Signed-off-by: Guillaume Charifi guillaume.charifi@sfr.fr --- dlls/kernelbase/kernelbase.spec | 2 +- dlls/kernelbase/process.c | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-)
diff --git a/dlls/kernelbase/kernelbase.spec b/dlls/kernelbase/kernelbase.spec index e1fb19eceb0..dd9f4a8ddce 100644 --- a/dlls/kernelbase/kernelbase.spec +++ b/dlls/kernelbase/kernelbase.spec @@ -1460,7 +1460,7 @@ @ stdcall SetPrivateObjectSecurityEx(long ptr ptr long ptr long) @ stdcall SetProcessAffinityUpdateMode(long long) # @ stub SetProcessDefaultCpuSets -# @ stub SetProcessGroupAffinity +@ stdcall SetProcessGroupAffinity(long ptr ptr) # @ stub SetProcessInformation @ stdcall SetProcessMitigationPolicy(long ptr long) @ stdcall SetProcessPreferredUILanguages(long ptr ptr) diff --git a/dlls/kernelbase/process.c b/dlls/kernelbase/process.c index 101d3fa3213..46b8087b885 100644 --- a/dlls/kernelbase/process.c +++ b/dlls/kernelbase/process.c @@ -1133,6 +1133,18 @@ BOOL WINAPI DECLSPEC_HOTPATCH SetProcessAffinityUpdateMode( HANDLE process, DWOR }
+/*********************************************************************** + * SetProcessGroupAffinity (kernelbase.@) + */ +BOOL WINAPI DECLSPEC_HOTPATCH SetProcessGroupAffinity( HANDLE process, const GROUP_AFFINITY *new, + GROUP_AFFINITY *old ) +{ + FIXME( "(%p,%p,%p): stub\n", process, new, old ); + SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); + return FALSE; +} + + /********************************************************************** * SetProcessMitigationPolicy (kernelbase.@) */
Signed-off-by: Guillaume Charifi guillaume.charifi@sfr.fr --- configure | 15341 +++++++++------- configure.ac | 1 + .../Makefile.in | 1 + ...pi-ms-win-core-processtopology-l1-1-0.spec | 4 + include/config.h.in | 15 +- tools/make_specfiles | 1 + 6 files changed, 8976 insertions(+), 6387 deletions(-) create mode 100644 dlls/api-ms-win-core-processtopology-l1-1-0/Makefile.in create mode 100644 dlls/api-ms-win-core-processtopology-l1-1-0/api-ms-win-core-processtopology-l1-1-0.spec
diff --git a/configure b/configure index 5f8735b0d37..f25bc433740 100755 --- a/configure +++ b/configure @@ -1,11 +1,12 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for Wine 6.16. +# Generated by GNU Autoconf 2.71 for Wine 6.16. # # Report bugs to wine-devel@winehq.org. # # -# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. +# Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation, +# Inc. # # # This configure script is free software; the Free Software Foundation @@ -16,14 +17,16 @@
# Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : +as_nop=: +if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 +then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST -else +else $as_nop case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( @@ -33,46 +36,46 @@ esac fi
+ +# Reset variables that may have inherited troublesome values from +# the environment. + +# IFS needs to be set, to space, tab, and newline, in precisely that order. +# (If _AS_PATH_WALK were called with IFS unset, it would have the +# side effect of setting IFS to empty, thus disabling word splitting.) +# Quoting is to prevent editors from complaining about space-tab. as_nl=' ' export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\(.*\)"' - as_echo_n_body='eval - arg=$1; - case $arg in #( - *"$as_nl"*) - expr "X$arg" : "X\(.*\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\(.*\)"`;; - esac; - expr "X$arg" : "X\(.*\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi +IFS=" "" $as_nl" + +PS1='$ ' +PS2='> ' +PS4='+ ' + +# Ensure predictable behavior from utilities with locale-dependent output. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# We cannot yet rely on "unset" to work, but we need these variables +# to be unset--not just set to an empty or harmless value--now, to +# avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct +# also avoids known problems related to "unset" and subshell syntax +# in other old shells (e.g. bash 2.01 and pdksh 5.2.14). +for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH +do eval test ${$as_var+y} \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done + +# Ensure that fds 0, 1, and 2 are open. +if (exec 3>&0) 2>/dev/null; then :; else exec 0</dev/null; fi +if (exec 3>&1) 2>/dev/null; then :; else exec 1>/dev/null; fi +if (exec 3>&2) ; then :; else exec 2>/dev/null; fi
# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then +if ${PATH_SEPARATOR+false} :; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || @@ -81,13 +84,6 @@ if test "${PATH_SEPARATOR+set}" != set; then fi
-# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( @@ -96,8 +92,12 @@ case $0 in #(( for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac + test -r "$as_dir$0" && as_myself=$as_dir$0 && break done IFS=$as_save_IFS
@@ -109,30 +109,10 @@ if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi
-# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
# Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. @@ -154,20 +134,22 @@ esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. -$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -as_fn_exit 255 +printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2 +exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then - as_bourne_compatible="if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + as_bourne_compatible="as_nop=: +if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 +then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST -else +else $as_nop case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( @@ -187,42 +169,53 @@ as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } -if ( set x; as_fn_ret_success y && test x = "$1" ); then : +if ( set x; as_fn_ret_success y && test x = "$1" ) +then :
-else +else $as_nop exitcode=1; echo positional parameters were not saved. fi test x$exitcode = x0 || exit 1 +blah=$(echo $(echo blah)) +test x"$blah" = xblah || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || exit 1 test $(( 1 + 1 )) = 2 || exit 1" - if (eval "$as_required") 2>/dev/null; then : + if (eval "$as_required") 2>/dev/null +then : as_have_required=yes -else +else $as_nop as_have_required=no fi - if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null +then :
-else +else $as_nop as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. - as_shell=$as_dir/$as_base + as_shell=$as_dir$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : + as_run=a "$as_shell" -c "$as_bourne_compatible""$as_required" 2>/dev/null +then : CONFIG_SHELL=$as_shell as_have_required=yes - if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : + if as_run=a "$as_shell" -c "$as_bourne_compatible""$as_suggested" 2>/dev/null +then : break 2 fi fi @@ -230,14 +223,21 @@ fi esac as_found=false done -$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && - { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : - CONFIG_SHELL=$SHELL as_have_required=yes -fi; } IFS=$as_save_IFS +if $as_found +then : + +else $as_nop + if { test -f "$SHELL" || test -f "$SHELL.exe"; } && + as_run=a "$SHELL" -c "$as_bourne_compatible""$as_required" 2>/dev/null +then : + CONFIG_SHELL=$SHELL as_have_required=yes +fi +fi
- if test "x$CONFIG_SHELL" != x; then : + if test "x$CONFIG_SHELL" != x +then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also @@ -255,18 +255,19 @@ esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. -$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi
- if test x$as_have_required = xno; then : - $as_echo "$0: This script requires a shell more modern than all" - $as_echo "$0: the shells that I found on your system." - if test x${ZSH_VERSION+set} = xset ; then - $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" - $as_echo "$0: be upgraded to zsh 4.3.4 or later." + if test x$as_have_required = xno +then : + printf "%s\n" "$0: This script requires a shell more modern than all" + printf "%s\n" "$0: the shells that I found on your system." + if test ${ZSH_VERSION+y} ; then + printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should" + printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later." else - $as_echo "$0: Please tell bug-autoconf@gnu.org and + printf "%s\n" "$0: Please tell bug-autoconf@gnu.org and $0: wine-devel@winehq.org about your system, including any $0: error possibly output before this message. Then install $0: a modern shell, or manually run the script under such a @@ -294,6 +295,7 @@ as_fn_unset () } as_unset=as_fn_unset
+ # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. @@ -311,6 +313,14 @@ as_fn_exit () as_fn_set_status $1 exit $1 } # as_fn_exit +# as_fn_nop +# --------- +# Do nothing but, unlike ":", preserve the value of $?. +as_fn_nop () +{ + return $? +} +as_nop=as_fn_nop
# as_fn_mkdir_p # ------------- @@ -325,7 +335,7 @@ as_fn_mkdir_p () as_dirs= while :; do case $as_dir in #( - *'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\''/g"`;; #'( + *'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" @@ -334,7 +344,7 @@ $as_expr X"$as_dir" : 'X(.*[^/])//*[^/][^/]*/*$' | \ X"$as_dir" : 'X(//)[^/]' | \ X"$as_dir" : 'X(//)$' | \ X"$as_dir" : 'X(/)' | . 2>/dev/null || -$as_echo X"$as_dir" | +printf "%s\n" X"$as_dir" | sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//\1/ q @@ -373,12 +383,13 @@ as_fn_executable_p () # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. -if (eval "as_var=1; as_var+=2; test x$as_var = x12") 2>/dev/null; then : +if (eval "as_var=1; as_var+=2; test x$as_var = x12") 2>/dev/null +then : eval 'as_fn_append () { eval $1+=$2 }' -else +else $as_nop as_fn_append () { eval $1=$$1$2 @@ -390,18 +401,27 @@ fi # as_fn_append # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. -if (eval "test $(( 1 + 1 )) = 2") 2>/dev/null; then : +if (eval "test $(( 1 + 1 )) = 2") 2>/dev/null +then : eval 'as_fn_arith () { as_val=$(( $* )) }' -else +else $as_nop as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith
+# as_fn_nop +# --------- +# Do nothing but, unlike ":", preserve the value of $?. +as_fn_nop () +{ + return $? +} +as_nop=as_fn_nop
# as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- @@ -413,9 +433,9 @@ as_fn_error () as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi - $as_echo "$as_me: error: $2" >&2 + printf "%s\n" "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error
@@ -442,7 +462,7 @@ as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/([^/][^/]*)/*$' | \ X"$0" : 'X(//)$' | \ X"$0" : 'X(/)' | . 2>/dev/null || -$as_echo X/"$0" | +printf "%s\n" X/"$0" | sed '/^.*/([^/][^/]*)/*$/{ s//\1/ q @@ -486,7 +506,7 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || - { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + { printf "%s\n" "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
# If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall @@ -500,6 +520,10 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits exit }
+ +# Determine whether it's possible to make 'echo' print without a newline. +# These variables are no longer used directly by Autoconf, but are AC_SUBSTed +# for compatibility with existing Makefiles. ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) @@ -513,6 +537,13 @@ case `echo -n x` in #((((( ECHO_N='-n';; esac
+# For backward compatibility with old third-party macros, we provide +# the shell variables $as_echo and $as_echo_n. New code should use +# AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively. +as_echo='printf %s\n' +as_echo_n='printf %s' + + rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file @@ -588,40 +619,36 @@ PACKAGE_URL='https://www.winehq.org' ac_unique_file="server/atom.c" # Factoring default headers for most tests. ac_includes_default="\ -#include <stdio.h> -#ifdef HAVE_SYS_TYPES_H -# include <sys/types.h> -#endif -#ifdef HAVE_SYS_STAT_H -# include <sys/stat.h> +#include <stddef.h> +#ifdef HAVE_STDIO_H +# include <stdio.h> #endif -#ifdef STDC_HEADERS +#ifdef HAVE_STDLIB_H # include <stdlib.h> -# include <stddef.h> -#else -# ifdef HAVE_STDLIB_H -# include <stdlib.h> -# endif #endif #ifdef HAVE_STRING_H -# if !defined STDC_HEADERS && defined HAVE_MEMORY_H -# include <memory.h> -# endif # include <string.h> #endif -#ifdef HAVE_STRINGS_H -# include <strings.h> -#endif #ifdef HAVE_INTTYPES_H # include <inttypes.h> #endif #ifdef HAVE_STDINT_H # include <stdint.h> #endif +#ifdef HAVE_STRINGS_H +# include <strings.h> +#endif +#ifdef HAVE_SYS_TYPES_H +# include <sys/types.h> +#endif +#ifdef HAVE_SYS_STAT_H +# include <sys/stat.h> +#endif #ifdef HAVE_UNISTD_H # include <unistd.h> #endif"
+ac_header_c_list= ac_subst_vars='LTLIBOBJS LIBOBJS ALL_VARS_RULES @@ -705,6 +732,7 @@ X_EXTRA_LIBS X_LIBS X_PRE_LIBS X_CFLAGS +CPP XMKMF PTHREAD_LIBS EXCESS_PRECISION_CFLAGS @@ -735,7 +763,6 @@ APPLICATIONSERVICES_LIBS FORCEFEEDBACK_LIBS IOKIT_LIBS COREFOUNDATION_LIBS -OBJCPP ac_ct_OBJC OBJCFLAGS OBJC @@ -754,7 +781,6 @@ TOP_INSTALL_LIB LDEXECFLAGS LDDLLFLAGS DLLFLAGS -CPP OPENGL_LIBS I386_LIBS ICOTOOL @@ -1012,6 +1038,7 @@ enable_api_ms_win_core_processthreads_l1_1_0 enable_api_ms_win_core_processthreads_l1_1_1 enable_api_ms_win_core_processthreads_l1_1_2 enable_api_ms_win_core_processthreads_l1_1_3 +enable_api_ms_win_core_processtopology_l1_1_0 enable_api_ms_win_core_processtopology_obsolete_l1_1_0 enable_api_ms_win_core_profile_l1_1_0 enable_api_ms_win_core_psapi_ansi_l1_1_0 @@ -1912,11 +1939,10 @@ CPPFLAGS CXX CXXFLAGS CCC -CPP OBJC OBJCFLAGS -OBJCPP XMKMF +CPP XML2_CFLAGS XML2_LIBS XSLT_CFLAGS @@ -2049,8 +2075,6 @@ do *) ac_optarg=yes ;; esac
- # Accept the important Cygnus configure options, so we can diagnose typos. - case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; @@ -2091,9 +2115,9 @@ do ac_useropt=`expr "x$ac_option" : 'x-*disable-(.*)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" + as_fn_error $? "invalid feature name: `$ac_useropt'" ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" @@ -2117,9 +2141,9 @@ do ac_useropt=`expr "x$ac_option" : 'x-*enable-([^=]*)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid feature name: $ac_useropt" + as_fn_error $? "invalid feature name: `$ac_useropt'" ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" @@ -2330,9 +2354,9 @@ do ac_useropt=`expr "x$ac_option" : 'x-*with-([^=]*)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" + as_fn_error $? "invalid package name: `$ac_useropt'" ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" @@ -2346,9 +2370,9 @@ do ac_useropt=`expr "x$ac_option" : 'x-*without-(.*)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && - as_fn_error $? "invalid package name: $ac_useropt" + as_fn_error $? "invalid package name: `$ac_useropt'" ac_useropt_orig=$ac_useropt - ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" @@ -2392,9 +2416,9 @@ Try `$0 --help' for more information"
*) # FIXME: should be removed in autoconf 3.0. - $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + printf "%s\n" "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + printf "%s\n" "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;;
@@ -2410,7 +2434,7 @@ if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; - *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + *) printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi
@@ -2474,7 +2498,7 @@ $as_expr X"$as_myself" : 'X(.*[^/])//*[^/][^/]*/*$' | \ X"$as_myself" : 'X(//)[^/]' | \ X"$as_myself" : 'X(//)$' | \ X"$as_myself" : 'X(/)' | . 2>/dev/null || -$as_echo X"$as_myself" | +printf "%s\n" X"$as_myself" | sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//\1/ q @@ -2696,11 +2720,10 @@ Some influential environment variables: you have headers in a nonstandard directory <include dir> CXX C++ compiler command CXXFLAGS C++ compiler flags - CPP C preprocessor OBJC Objective C compiler command OBJCFLAGS Objective C compiler flags - OBJCPP Objective C preprocessor XMKMF Path to xmkmf, Makefile generator for X Window System + CPP C preprocessor XML2_CFLAGS C compiler flags for libxml-2.0, overriding pkg-config XML2_LIBS Linker flags for libxml-2.0, overriding pkg-config XSLT_CFLAGS C compiler flags for libxslt, overriding pkg-config @@ -2813,9 +2836,9 @@ if test "$ac_init_help" = "recursive"; then case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^.[\/]||'` + ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^.[\/]||'` # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\/]*|/..|g;s|/||'` + ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; @@ -2843,7 +2866,8 @@ esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
cd "$ac_dir" || { ac_status=$?; continue; } - # Check for guested configure. + # Check for configure.gnu first; this name is used for a wrapper for + # Metaconfig's "Configure" on case-insensitive file systems. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive @@ -2851,7 +2875,7 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix echo && $SHELL "$ac_srcdir/configure" --help=recursive else - $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + printf "%s\n" "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done @@ -2861,9 +2885,9 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<_ACEOF Wine configure 6.16 -generated by GNU Autoconf 2.69 +generated by GNU Autoconf 2.71
-Copyright (C) 2012 Free Software Foundation, Inc. +Copyright (C) 2021 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF @@ -2880,14 +2904,14 @@ fi ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext + rm -f conftest.$ac_objext conftest.beam if { { ac_try="$ac_compile" case "(($ac_try" in *"* | *`* | *\*) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then @@ -2895,14 +2919,15 @@ $as_echo "$ac_try_echo"; } >&5 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err - } && test -s conftest.$ac_objext; then : + } && test -s conftest.$ac_objext +then : ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 +else $as_nop + printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=1 @@ -2918,14 +2943,14 @@ fi ac_fn_cxx_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext + rm -f conftest.$ac_objext conftest.beam if { { ac_try="$ac_compile" case "(($ac_try" in *"* | *`* | *\*) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then @@ -2933,14 +2958,15 @@ $as_echo "$ac_try_echo"; } >&5 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err - } && test -s conftest.$ac_objext; then : + } && test -s conftest.$ac_objext +then : ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 +else $as_nop + printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=1 @@ -2956,14 +2982,14 @@ fi ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext conftest$ac_exeext + rm -f conftest.$ac_objext conftest.beam conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *"* | *`* | *\*) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then @@ -2971,17 +2997,18 @@ $as_echo "$ac_try_echo"; } >&5 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext - }; then : + } +then : ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 +else $as_nop + printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=1 @@ -2996,176 +3023,6 @@ fi
} # ac_fn_c_try_link
-# ac_fn_c_try_cpp LINENO -# ---------------------- -# Try to preprocess conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *"* | *`* | *\*) ac_try_echo=$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 - test $ac_status = 0; } > conftest.i && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_c_try_cpp - -# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES -# ------------------------------------------------------- -# Tests whether HEADER exists, giving a warning if it cannot be compiled using -# the include files in INCLUDES and setting the cache variable VAR -# accordingly. -ac_fn_c_check_header_mongrel () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if eval ${$3+:} false; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval ${$3+:} false; then : - $as_echo_n "(cached) " >&6 -fi -eval ac_res=$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -else - # Is the header compilable? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 -$as_echo_n "checking $2 usability... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -#include <$2> -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_header_compiler=yes -else - ac_header_compiler=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 -$as_echo "$ac_header_compiler" >&6; } - -# Is the header present? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 -$as_echo_n "checking $2 presence... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <$2> -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - ac_header_preproc=yes -else - ac_header_preproc=no -fi -rm -f conftest.err conftest.i conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 -$as_echo "$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( - yes:no: ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 -$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} - ;; - no:yes:* ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 -$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 -$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 -$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section "Present But Cannot Be Compiled"" >&5 -$as_echo "$as_me: WARNING: $2: section "Present But Cannot Be Compiled"" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -( $as_echo "## ------------------------------------ ## -## Report this to wine-devel@winehq.org ## -## ------------------------------------ ##" - ) | sed "s/^/$as_me: WARNING: /" >&2 - ;; -esac - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval ${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - eval "$3=$ac_header_compiler" -fi -eval ac_res=$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - -} # ac_fn_c_check_header_mongrel - -# ac_fn_c_try_run LINENO -# ---------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes -# that executables *can* be run. -ac_fn_c_try_run () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_link" -case "(($ac_try" in - *"* | *`* | *\*) ac_try_echo=$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 - test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' - { { case "(($ac_try" in - *"* | *`* | *\*) ac_try_echo=$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 - test $ac_status = 0; }; }; then : - ac_retval=0 -else - $as_echo "$as_me: program exited with status $ac_status" >&5 - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=$ac_status -fi - rm -rf conftest.dSYM conftest_ipa8_conftest.oo - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_c_try_run - # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in @@ -3173,26 +3030,28 @@ fi ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval ${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +printf %s "checking for $2... " >&6; } +if eval test ${$3+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : eval "$3=yes" -else +else $as_nop eval "$3=no" fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi eval ac_res=$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_header_compile @@ -3203,14 +3062,14 @@ $as_echo "$ac_res" >&6; } ac_fn_objc_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - rm -f conftest.$ac_objext + rm -f conftest.$ac_objext conftest.beam if { { ac_try="$ac_compile" case "(($ac_try" in *"* | *`* | *\*) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then @@ -3218,14 +3077,15 @@ $as_echo "$ac_try_echo"; } >&5 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_objc_werror_flag" || test ! -s conftest.err - } && test -s conftest.$ac_objext; then : + } && test -s conftest.$ac_objext +then : ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 +else $as_nop + printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=1 @@ -3235,133 +3095,38 @@ fi
} # ac_fn_objc_try_compile
-# ac_fn_objc_try_cpp LINENO -# ------------------------- -# Try to preprocess conftest.$ac_ext, and return whether this succeeded. -ac_fn_objc_try_cpp () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if { { ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *"* | *`* | *\*) ac_try_echo=$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err - ac_status=$? - if test -s conftest.err; then - grep -v '^ *+' conftest.err >conftest.er1 - cat conftest.er1 >&5 - mv -f conftest.er1 conftest.err - fi - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 - test $ac_status = 0; } > conftest.i && { - test -z "$ac_objc_preproc_warn_flag$ac_objc_werror_flag" || - test ! -s conftest.err - }; then : - ac_retval=0 -else - $as_echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_retval=1 -fi - eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno - as_fn_set_status $ac_retval - -} # ac_fn_objc_try_cpp - -# ac_fn_objc_check_header_mongrel LINENO HEADER VAR INCLUDES +# ac_fn_objc_check_header_compile LINENO HEADER VAR INCLUDES # ---------------------------------------------------------- -# Tests whether HEADER exists, giving a warning if it cannot be compiled using -# the include files in INCLUDES and setting the cache variable VAR -# accordingly. -ac_fn_objc_check_header_mongrel () +# Tests whether HEADER exists and can be compiled using the include files in +# INCLUDES, setting the cache variable VAR accordingly. +ac_fn_objc_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - if eval ${$3+:} false; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval ${$3+:} false; then : - $as_echo_n "(cached) " >&6 -fi -eval ac_res=$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -else - # Is the header compilable? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 -$as_echo_n "checking $2 usability... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +printf %s "checking for $2... " >&6; } +if eval test ${$3+y} +then : + printf %s "(cached) " >&6 +else $as_nop + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : - ac_header_compiler=yes -else - ac_header_compiler=no -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 -$as_echo "$ac_header_compiler" >&6; } - -# Is the header present? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 -$as_echo_n "checking $2 presence... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <$2> -_ACEOF -if ac_fn_objc_try_cpp "$LINENO"; then : - ac_header_preproc=yes -else - ac_header_preproc=no +if ac_fn_objc_try_compile "$LINENO" +then : + eval "$3=yes" +else $as_nop + eval "$3=no" fi -rm -f conftest.err conftest.i conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 -$as_echo "$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_objc_preproc_warn_flag in #(( - yes:no: ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 -$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} - ;; - no:yes:* ) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 -$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 -$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 -$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section "Present But Cannot Be Compiled"" >&5 -$as_echo "$as_me: WARNING: $2: section "Present But Cannot Be Compiled"" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 -$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -( $as_echo "## ------------------------------------ ## -## Report this to wine-devel@winehq.org ## -## ------------------------------------ ##" - ) | sed "s/^/$as_me: WARNING: /" >&2 - ;; -esac - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval ${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else - eval "$3=$ac_header_compiler" +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi eval ac_res=$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -fi + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
-} # ac_fn_objc_check_header_mongrel +} # ac_fn_objc_check_header_compile
# ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- @@ -3369,11 +3134,12 @@ fi ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval ${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +printf %s "checking for $2... " >&6; } +if eval test ${$3+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case <limits.h> declares $2. @@ -3381,16 +3147,9 @@ else #define $2 innocuous_$2
/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $2 (); below. - Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - <limits.h> exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif + which can conflict with char $2 (); below. */
+#include <limits.h> #undef $2
/* Override any GCC internal prototype to avoid an error. @@ -3408,61 +3167,102 @@ choke me #endif
int -main () +main (void) { return $2 (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : eval "$3=yes" -else +else $as_nop eval "$3=no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_func
-# ac_fn_c_check_member LINENO AGGR MEMBER VAR INCLUDES -# ---------------------------------------------------- -# Tries to find if the field MEMBER exists in type AGGR, after including -# INCLUDES, setting cache variable VAR accordingly. -ac_fn_c_check_member () +# ac_fn_c_try_cpp LINENO +# ---------------------- +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5 -$as_echo_n "checking for $2.$3... " >&6; } -if eval ${$4+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$5 -int -main () -{ -static $2 ac_aggr; -if (ac_aggr.$3) -return 0; - ; - return 0; + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *"* | *`* | *\*) ac_try_echo=$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" +printf "%s\n" "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 + test $ac_status = 0; } > conftest.i && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + } +then : + ac_retval=0 +else $as_nop + printf "%s\n" "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_cpp + +# ac_fn_c_check_member LINENO AGGR MEMBER VAR INCLUDES +# ---------------------------------------------------- +# Tries to find if the field MEMBER exists in type AGGR, after including +# INCLUDES, setting cache variable VAR accordingly. +ac_fn_c_check_member () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5 +printf %s "checking for $2.$3... " >&6; } +if eval test ${$4+y} +then : + printf %s "(cached) " >&6 +else $as_nop + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$5 +int +main (void) +{ +static $2 ac_aggr; +if (ac_aggr.$3) +return 0; + ; + return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : eval "$4=yes" -else +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $5 int -main () +main (void) { static $2 ac_aggr; if (sizeof ac_aggr.$3) @@ -3471,18 +3271,19 @@ return 0; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : eval "$4=yes" -else +else $as_nop eval "$4=no" fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi eval ac_res=$$4 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_member @@ -3494,17 +3295,18 @@ $as_echo "$ac_res" >&6; } ac_fn_c_check_type () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 -$as_echo_n "checking for $2... " >&6; } -if eval ${$3+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +printf %s "checking for $2... " >&6; } +if eval test ${$3+y} +then : + printf %s "(cached) " >&6 +else $as_nop eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int -main () +main (void) { if (sizeof ($2)) return 0; @@ -3512,12 +3314,13 @@ if (sizeof ($2)) return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int -main () +main (void) { if (sizeof (($2))) return 0; @@ -3525,29 +3328,50 @@ if (sizeof (($2))) return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then :
-else +else $as_nop eval "$3=yes" fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi eval ac_res=$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_type +ac_configure_args_raw= +for ac_arg +do + case $ac_arg in + *'*) + ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\''/g"` ;; + esac + as_fn_append ac_configure_args_raw " '$ac_arg'" +done + +case $ac_configure_args_raw in + *$as_nl*) + ac_safe_unquote= ;; + *) + ac_unsafe_z='|&;<>()$`\"*?[ '' ' # This string ends in space, tab. + ac_unsafe_a="$ac_unsafe_z#~" + ac_safe_unquote="s/ '\([^$ac_unsafe_a][^$ac_unsafe_z]*\)'/ \1/g" + ac_configure_args_raw=` printf "%s\n" "$ac_configure_args_raw" | sed "$ac_safe_unquote"`;; +esac + cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake.
It was created by Wine $as_me 6.16, which was -generated by GNU Autoconf 2.69. Invocation command line was +generated by GNU Autoconf 2.71. Invocation command line was
- $ $0 $@ + $ $0$ac_configure_args_raw
_ACEOF exec 5>>config.log @@ -3580,8 +3404,12 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - $as_echo "PATH: $as_dir" + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac + printf "%s\n" "PATH: $as_dir" done IFS=$as_save_IFS
@@ -3616,7 +3444,7 @@ do | -silent | --silent | --silen | --sile | --sil) continue ;; *'*) - ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\''/g"` ;; + ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; @@ -3651,11 +3479,13 @@ done # WARNING: Use ''' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? + # Sanitize IFS. + IFS=" "" $as_nl" # Save into config.log some information that might help in debugging. { echo
- $as_echo "## ---------------- ## + printf "%s\n" "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo @@ -3666,8 +3496,8 @@ trap 'exit_status=$? case $ac_val in #( *${as_nl}*) case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( @@ -3691,7 +3521,7 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; ) echo
- $as_echo "## ----------------- ## + printf "%s\n" "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo @@ -3699,14 +3529,14 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; do eval ac_val=$$ac_var case $ac_val in - *'''*) ac_val=`$as_echo "$ac_val" | sed "s/'''/'''\\\\''''''/g"`;; + *'''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'''/'''\\\\''''''/g"`;; esac - $as_echo "$ac_var='''$ac_val'''" + printf "%s\n" "$ac_var='''$ac_val'''" done | sort echo
if test -n "$ac_subst_files"; then - $as_echo "## ------------------- ## + printf "%s\n" "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo @@ -3714,15 +3544,15 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; do eval ac_val=$$ac_var case $ac_val in - *'''*) ac_val=`$as_echo "$ac_val" | sed "s/'''/'''\\\\''''''/g"`;; + *'''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'''/'''\\\\''''''/g"`;; esac - $as_echo "$ac_var='''$ac_val'''" + printf "%s\n" "$ac_var='''$ac_val'''" done | sort echo fi
if test -s confdefs.h; then - $as_echo "## ----------- ## + printf "%s\n" "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo @@ -3730,8 +3560,8 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; echo fi test "$ac_signal" != 0 && - $as_echo "$as_me: caught signal $ac_signal" - $as_echo "$as_me: exit $exit_status" + printf "%s\n" "$as_me: caught signal $ac_signal" + printf "%s\n" "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && @@ -3745,63 +3575,48 @@ ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h
-$as_echo "/* confdefs.h */" > confdefs.h +printf "%s\n" "/* confdefs.h */" > confdefs.h
# Predefined preprocessor variables.
-cat >>confdefs.h <<_ACEOF -#define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF +printf "%s\n" "#define PACKAGE_NAME "$PACKAGE_NAME"" >>confdefs.h
-cat >>confdefs.h <<_ACEOF -#define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF +printf "%s\n" "#define PACKAGE_TARNAME "$PACKAGE_TARNAME"" >>confdefs.h
-cat >>confdefs.h <<_ACEOF -#define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF +printf "%s\n" "#define PACKAGE_VERSION "$PACKAGE_VERSION"" >>confdefs.h
-cat >>confdefs.h <<_ACEOF -#define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF +printf "%s\n" "#define PACKAGE_STRING "$PACKAGE_STRING"" >>confdefs.h
-cat >>confdefs.h <<_ACEOF -#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF +printf "%s\n" "#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"" >>confdefs.h
-cat >>confdefs.h <<_ACEOF -#define PACKAGE_URL "$PACKAGE_URL" -_ACEOF +printf "%s\n" "#define PACKAGE_URL "$PACKAGE_URL"" >>confdefs.h
# Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. -ac_site_file1=NONE -ac_site_file2=NONE if test -n "$CONFIG_SITE"; then - # We do not want a PATH search for config.site. - case $CONFIG_SITE in #(( - -*) ac_site_file1=./$CONFIG_SITE;; - */*) ac_site_file1=$CONFIG_SITE;; - *) ac_site_file1=./$CONFIG_SITE;; - esac + ac_site_files="$CONFIG_SITE" elif test "x$prefix" != xNONE; then - ac_site_file1=$prefix/share/config.site - ac_site_file2=$prefix/etc/config.site + ac_site_files="$prefix/share/config.site $prefix/etc/config.site" else - ac_site_file1=$ac_default_prefix/share/config.site - ac_site_file2=$ac_default_prefix/etc/config.site + ac_site_files="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" fi -for ac_site_file in "$ac_site_file1" "$ac_site_file2" + +for ac_site_file in $ac_site_files do - test "x$ac_site_file" = xNONE && continue - if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 -$as_echo "$as_me: loading site script $ac_site_file" >&6;} + case $ac_site_file in #( + */*) : + ;; #( + *) : + ac_site_file=./$ac_site_file ;; +esac + if test -f "$ac_site_file" && test -r "$ac_site_file"; then + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 +printf "%s\n" "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ - || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 -$as_echo "$as_me: error: in `$ac_pwd':" >&2;} + || { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 +printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See `config.log' for more details" "$LINENO" 5; } fi @@ -3811,542 +3626,1217 @@ if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 -$as_echo "$as_me: loading cache $cache_file" >&6;} + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 +printf "%s\n" "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\/]* | ?:[\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else - { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 -$as_echo "$as_me: creating cache $cache_file" >&6;} + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 +printf "%s\n" "$as_me: creating cache $cache_file" >&6;}
$cache_file
fi
-# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in $ac_precious_vars; do - eval ac_old_set=$ac_cv_env_${ac_var}_set - eval ac_new_set=$ac_env_${ac_var}_set - eval ac_old_val=$ac_cv_env_${ac_var}_value - eval ac_new_val=$ac_env_${ac_var}_value - case $ac_old_set,$ac_new_set in - set,) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: `$ac_var' was set to `$ac_old_val' in the previous run" >&5 -$as_echo "$as_me: error: `$ac_var' was set to `$ac_old_val' in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,set) - { $as_echo "$as_me:${as_lineno-$LINENO}: error: `$ac_var' was not set in the previous run" >&5 -$as_echo "$as_me: error: `$ac_var' was not set in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,);; - *) - if test "x$ac_old_val" != "x$ac_new_val"; then - # differences in whitespace do not lead to failure. - ac_old_val_w=`echo x $ac_old_val` - ac_new_val_w=`echo x $ac_new_val` - if test "$ac_old_val_w" != "$ac_new_val_w"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: `$ac_var' has changed since the previous run:" >&5 -$as_echo "$as_me: error: `$ac_var' has changed since the previous run:" >&2;} - ac_cache_corrupted=: - else - { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in `$ac_var' since the previous run:" >&5 -$as_echo "$as_me: warning: ignoring whitespace changes in `$ac_var' since the previous run:" >&2;} - eval $ac_var=$ac_old_val - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: former value: `$ac_old_val'" >&5 -$as_echo "$as_me: former value: `$ac_old_val'" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: current value: `$ac_new_val'" >&5 -$as_echo "$as_me: current value: `$ac_new_val'" >&2;} - fi;; - esac - # Pass precious variables to config.status. - if test "$ac_new_set" = set; then - case $ac_new_val in - *'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\''/g"` ;; - *) ac_arg=$ac_var=$ac_new_val ;; - esac - case " $ac_configure_args " in - *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) as_fn_append ac_configure_args " '$ac_arg'" ;; - esac - fi -done -if $ac_cache_corrupted; then - { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 -$as_echo "$as_me: error: in `$ac_pwd':" >&2;} - { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 -$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} - as_fn_error $? "run `make distclean' and/or `rm $cache_file' and start over" "$LINENO" 5 -fi -## -------------------- ## -## Main body of script. ## -## -------------------- ## +# Test code for whether the C compiler supports C89 (global declarations) +ac_c_conftest_c89_globals=' +/* Does the compiler advertise C89 conformance? + Do not test the value of __STDC__, because some compilers set it to 0 + while being otherwise adequately conformant. */ +#if !defined __STDC__ +# error "Compiler does not advertise C89 conformance" +#endif
-ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu +#include <stddef.h> +#include <stdarg.h> +struct stat; +/* Most of the following tests are stolen from RCS 5.7 src/conf.sh. */ +struct buf { int x; }; +struct buf * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +}
+/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not \xHH hex character constants. + These do not provoke an error unfortunately, instead are silently treated + as an "x". The following induces an error, until -std is added to get + proper ANSI mode. Curiously \x00 != x always comes out true, for an + array size at least. It is necessary to write \x00 == 0 to get something + that is true only with -std. */ +int osf4_cc_array ['''\x00''' == 0 ? 1 : -1];
+/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) '''x''' +int xlc6_cc_array[FOO(a) == '''x''' ? 1 : -1];
-ac_config_headers="$ac_config_headers include/config.h" +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, int *(*)(struct buf *, struct stat *, int), + int, int);'
-ac_aux_dir= -for ac_dir in tools "$srcdir"/tools; do - if test -f "$ac_dir/install-sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install-sh -c" - break - elif test -f "$ac_dir/install.sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install.sh -c" - break - elif test -f "$ac_dir/shtool"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/shtool install -c" - break - fi -done -if test -z "$ac_aux_dir"; then - as_fn_error $? "cannot find install-sh, install.sh, or shtool in tools "$srcdir"/tools" "$LINENO" 5 -fi +# Test code for whether the C compiler supports C89 (body of main). +ac_c_conftest_c89_main=' +ok |= (argc == 0 || f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]); +'
-# These three variables are undocumented and unsupported, -# and are intended to be withdrawn in a future Autoconf release. -# They can cause serious problems if a builder's source tree is in a directory -# whose full name contains unusual characters. -ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. -ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. -ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. +# Test code for whether the C compiler supports C99 (global declarations) +ac_c_conftest_c99_globals=' +// Does the compiler advertise C99 conformance? +#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 199901L +# error "Compiler does not advertise C99 conformance" +#endif
+#include <stdbool.h> +extern int puts (const char *); +extern int printf (const char *, ...); +extern int dprintf (int, const char *, ...); +extern void *malloc (size_t); + +// Check varargs macros. These examples are taken from C99 6.10.3.5. +// dprintf is used instead of fprintf to avoid needing to declare +// FILE and stderr. +#define debug(...) dprintf (2, __VA_ARGS__) +#define showlist(...) puts (#__VA_ARGS__) +#define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) +static void +test_varargs_macros (void) +{ + int x = 1234; + int y = 5678; + debug ("Flag"); + debug ("X = %d\n", x); + showlist (The first, second, and third items.); + report (x>y, "x is %d but y is %d", x, y); +}
+// Check long long types. +#define BIG64 18446744073709551615ull +#define BIG32 4294967295ul +#define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) +#if !BIG_OK + #error "your preprocessor is broken" +#endif +#if BIG_OK +#else + #error "your preprocessor is broken" +#endif +static long long int bignum = -9223372036854775807LL; +static unsigned long long int ubignum = BIG64;
-libwine_version="1.0" +struct incomplete_array +{ + int datasize; + double data[]; +};
+struct named_init { + int number; + const wchar_t *name; + double average; +};
+typedef const char *ccp;
-# Check whether --enable-win16 was given. -if test "${enable_win16+set}" = set; then : - enableval=$enable_win16; -fi +static inline int +test_restrict (ccp restrict text) +{ + // See if C++-style comments work. + // Iterate through items via the restricted pointer. + // Also check for declarations in for loops. + for (unsigned int i = 0; *(text+i) != '''\0'''; ++i) + continue; + return 0; +}
-# Check whether --enable-win64 was given. -if test "${enable_win64+set}" = set; then : - enableval=$enable_win64; -fi +// Check varargs and va_copy. +static bool +test_varargs (const char *format, ...) +{ + va_list args; + va_start (args, format); + va_list args_copy; + va_copy (args_copy, args);
-# Check whether --enable-tests was given. -if test "${enable_tests+set}" = set; then : - enableval=$enable_tests; -fi + const char *str = ""; + int number = 0; + float fnumber = 0;
-# Check whether --enable-build-id was given. -if test "${enable_build_id+set}" = set; then : - enableval=$enable_build_id; -fi + while (*format) + { + switch (*format++) + { + case '''s''': // string + str = va_arg (args_copy, const char *); + break; + case '''d''': // int + number = va_arg (args_copy, int); + break; + case '''f''': // float + fnumber = va_arg (args_copy, double); + break; + default: + break; + } + } + va_end (args_copy); + va_end (args);
-# Check whether --enable-maintainer-mode was given. -if test "${enable_maintainer_mode+set}" = set; then : - enableval=$enable_maintainer_mode; -fi + return *str && number && fnumber; +} +'
-# Check whether --enable-silent-rules was given. -if test "${enable_silent_rules+set}" = set; then : - enableval=$enable_silent_rules; -fi +# Test code for whether the C compiler supports C99 (body of main). +ac_c_conftest_c99_main=' + // Check bool. + _Bool success = false; + success |= (argc != 0); + + // Check restrict. + if (test_restrict ("String literal") == 0) + success = true; + char *restrict newvar = "Another string"; + + // Check varargs. + success &= test_varargs ("s, d''' f .", "string", 65, 34.234); + test_varargs_macros (); + + // Check flexible array members. + struct incomplete_array *ia = + malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); + ia->datasize = 10; + for (int i = 0; i < ia->datasize; ++i) + ia->data[i] = i * 1.234; + + // Check named initializers. + struct named_init ni = { + .number = 34, + .name = L"Test wide string", + .average = 543.34343, + }; + + ni.number = 58; + + int dynamic_array[ni.number]; + dynamic_array[0] = argv[0][0]; + dynamic_array[ni.number - 1] = 543; + + // work around unused variable warnings + ok |= (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == '''x''' + || dynamic_array[ni.number - 1] != 543); +'
-# Check whether --enable-werror was given. -if test "${enable_werror+set}" = set; then : - enableval=$enable_werror; -fi +# Test code for whether the C compiler supports C11 (global declarations) +ac_c_conftest_c11_globals=' +// Does the compiler advertise C11 conformance? +#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L +# error "Compiler does not advertise C11 conformance" +#endif
+// Check _Alignas. +char _Alignas (double) aligned_as_double; +char _Alignas (0) no_special_alignment; +extern char aligned_as_int; +char _Alignas (0) _Alignas (int) aligned_as_int;
+// Check _Alignof. +enum +{ + int_alignment = _Alignof (int), + int_array_alignment = _Alignof (int[100]), + char_alignment = _Alignof (char) +}; +_Static_assert (0 < -_Alignof (int), "_Alignof is signed");
-# Check whether --with-alsa was given. -if test "${with_alsa+set}" = set; then : - withval=$with_alsa; -fi +// Check _Noreturn. +int _Noreturn does_not_return (void) { for (;;) continue; }
+// Check _Static_assert. +struct test_static_assert +{ + int x; + _Static_assert (sizeof (int) <= sizeof (long int), + "_Static_assert does not work in struct"); + long int y; +}; + +// Check UTF-8 literals. +#define u8 syntax error! +char const utf8_literal[] = u8"happens to be ASCII" "another string"; + +// Check duplicate typedefs. +typedef long *long_ptr; +typedef long int *long_ptr; +typedef long_ptr long_ptr; + +// Anonymous structures and unions -- taken from C11 6.7.2.1 Example 1. +struct anonymous +{ + union { + struct { int i; int j; }; + struct { int k; long int l; } w; + }; + int m; +} v1; +'
-# Check whether --with-capi was given. -if test "${with_capi+set}" = set; then : - withval=$with_capi; -fi +# Test code for whether the C compiler supports C11 (body of main). +ac_c_conftest_c11_main=' + _Static_assert ((offsetof (struct anonymous, i) + == offsetof (struct anonymous, w.k)), + "Anonymous union alignment botch"); + v1.i = 2; + v1.w.k = 5; + ok |= v1.i != 5; +'
+# Test code for whether the C compiler supports C11 (complete). +ac_c_conftest_c11_program="${ac_c_conftest_c89_globals} +${ac_c_conftest_c99_globals} +${ac_c_conftest_c11_globals}
-# Check whether --with-cms was given. -if test "${with_cms+set}" = set; then : - withval=$with_cms; -fi +int +main (int argc, char **argv) +{ + int ok = 0; + ${ac_c_conftest_c89_main} + ${ac_c_conftest_c99_main} + ${ac_c_conftest_c11_main} + return ok; +} +"
+# Test code for whether the C compiler supports C99 (complete). +ac_c_conftest_c99_program="${ac_c_conftest_c89_globals} +${ac_c_conftest_c99_globals}
-# Check whether --with-coreaudio was given. -if test "${with_coreaudio+set}" = set; then : - withval=$with_coreaudio; if test "x$withval" = "xno"; then ac_cv_header_CoreAudio_CoreAudio_h=no; fi -fi +int +main (int argc, char **argv) +{ + int ok = 0; + ${ac_c_conftest_c89_main} + ${ac_c_conftest_c99_main} + return ok; +} +"
+# Test code for whether the C compiler supports C89 (complete). +ac_c_conftest_c89_program="${ac_c_conftest_c89_globals}
-# Check whether --with-cups was given. -if test "${with_cups+set}" = set; then : - withval=$with_cups; -fi +int +main (int argc, char **argv) +{ + int ok = 0; + ${ac_c_conftest_c89_main} + return ok; +} +"
+# Test code for whether the C++ compiler supports C++98 (global declarations) +ac_cxx_conftest_cxx98_globals=' +// Does the compiler advertise C++98 conformance? +#if !defined __cplusplus || __cplusplus < 199711L +# error "Compiler does not advertise C++98 conformance" +#endif
-# Check whether --with-dbus was given. -if test "${with_dbus+set}" = set; then : - withval=$with_dbus; -fi +// These inclusions are to reject old compilers that +// lack the unsuffixed header files. +#include <cstdlib> +#include <exception>
+// <cassert> and <cstring> are *not* freestanding headers in C++98. +extern void assert (int); +namespace std { + extern int strcmp (const char *, const char *); +}
-# Check whether --with-faudio was given. -if test "${with_faudio+set}" = set; then : - withval=$with_faudio; -fi +// Namespaces, exceptions, and templates were all added after "C++ 2.0". +using std::exception; +using std::strcmp;
+namespace {
-# Check whether --with-float-abi was given. -if test "${with_float_abi+set}" = set; then : - withval=$with_float_abi; -fi +void test_exception_syntax() +{ + try { + throw "test"; + } catch (const char *s) { + // Extra parentheses suppress a warning when building autoconf itself, + // due to lint rules shared with more typical C programs. + assert (!(strcmp) (s, "test")); + } +}
+template <typename T> struct test_template +{ + T const val; + explicit test_template(T t) : val(t) {} + template <typename U> T add(U u) { return static_cast<T>(u) + val; } +};
-# Check whether --with-fontconfig was given. -if test "${with_fontconfig+set}" = set; then : - withval=$with_fontconfig; -fi +} // anonymous namespace +'
+# Test code for whether the C++ compiler supports C++98 (body of main) +ac_cxx_conftest_cxx98_main=' + assert (argc); + assert (! argv[0]); +{ + test_exception_syntax (); + test_template<double> tt (2.0); + assert (tt.add (4) == 6.0); + assert (true && !false); +} +'
-# Check whether --with-freetype was given. -if test "${with_freetype+set}" = set; then : - withval=$with_freetype; -fi +# Test code for whether the C++ compiler supports C++11 (global declarations) +ac_cxx_conftest_cxx11_globals=' +// Does the compiler advertise C++ 2011 conformance? +#if !defined __cplusplus || __cplusplus < 201103L +# error "Compiler does not advertise C++11 conformance" +#endif
+namespace cxx11test +{ + constexpr int get_val() { return 20; }
-# Check whether --with-gettext was given. -if test "${with_gettext+set}" = set; then : - withval=$with_gettext; -fi + struct testinit + { + int i; + double d; + };
+ class delegate + { + public: + delegate(int n) : n(n) {} + delegate(): delegate(2354) {}
-# Check whether --with-gettextpo was given. -if test "${with_gettextpo+set}" = set; then : - withval=$with_gettextpo; if test "x$withval" = "xno"; then ac_cv_header_gettext_po_h=no; fi -fi + virtual int getval() { return this->n; }; + protected: + int n; + }; + + class overridden : public delegate + { + public: + overridden(int n): delegate(n) {} + virtual int getval() override final { return this->n * 2; } + }; + + class nocopy + { + public: + nocopy(int i): i(i) {} + nocopy() = default; + nocopy(const nocopy&) = delete; + nocopy & operator=(const nocopy&) = delete; + private: + int i; + }; + + // for testing lambda expressions + template <typename Ret, typename Fn> Ret eval(Fn f, Ret v) + { + return f(v); + } + + // for testing variadic templates and trailing return types + template <typename V> auto sum(V first) -> V + { + return first; + } + template <typename V, typename... Args> auto sum(V first, Args... rest) -> V + { + return first + sum(rest...); + } +} +' + +# Test code for whether the C++ compiler supports C++11 (body of main) +ac_cxx_conftest_cxx11_main=' +{ + // Test auto and decltype + auto a1 = 6538; + auto a2 = 48573953.4; + auto a3 = "String literal"; + + int total = 0; + for (auto i = a3; *i; ++i) { total += *i; } + + decltype(a2) a4 = 34895.034; +} +{ + // Test constexpr + short sa[cxx11test::get_val()] = { 0 }; +} +{ + // Test initializer lists + cxx11test::testinit il = { 4323, 435234.23544 }; +} +{ + // Test range-based for + int array[] = {9, 7, 13, 15, 4, 18, 12, 10, 5, 3, + 14, 19, 17, 8, 6, 20, 16, 2, 11, 1}; + for (auto &x : array) { x += 23; } +} +{ + // Test lambda expressions + using cxx11test::eval; + assert (eval ([](int x) { return x*2; }, 21) == 42); + double d = 2.0; + assert (eval ([&](double x) { return d += x; }, 3.0) == 5.0); + assert (d == 5.0); + assert (eval ([=](double x) mutable { return d += x; }, 4.0) == 9.0); + assert (d == 5.0); +} +{ + // Test use of variadic templates + using cxx11test::sum; + auto a = sum(1); + auto b = sum(1, 2); + auto c = sum(1.0, 2.0, 3.0); +} +{ + // Test constructor delegation + cxx11test::delegate d1; + cxx11test::delegate d2(); + cxx11test::delegate d3(45); +} +{ + // Test override and final + cxx11test::overridden o1(55464); +} +{ + // Test nullptr + char *c = nullptr; +} +{ + // Test template brackets + test_template<::test_template<int>> v(test_template<int>(12)); +} +{ + // Unicode literals + char const *utf8 = u8"UTF-8 string \u2500"; + char16_t const *utf16 = u"UTF-8 string \u2500"; + char32_t const *utf32 = U"UTF-32 string \u2500"; +} +' + +# Test code for whether the C compiler supports C++11 (complete). +ac_cxx_conftest_cxx11_program="${ac_cxx_conftest_cxx98_globals} +${ac_cxx_conftest_cxx11_globals} + +int +main (int argc, char **argv) +{ + int ok = 0; + ${ac_cxx_conftest_cxx98_main} + ${ac_cxx_conftest_cxx11_main} + return ok; +} +" + +# Test code for whether the C compiler supports C++98 (complete). +ac_cxx_conftest_cxx98_program="${ac_cxx_conftest_cxx98_globals} +int +main (int argc, char **argv) +{ + int ok = 0; + ${ac_cxx_conftest_cxx98_main} + return ok; +} +" + +as_fn_append ac_header_c_list " stdio.h stdio_h HAVE_STDIO_H" +as_fn_append ac_header_c_list " stdlib.h stdlib_h HAVE_STDLIB_H" +as_fn_append ac_header_c_list " string.h string_h HAVE_STRING_H" +as_fn_append ac_header_c_list " inttypes.h inttypes_h HAVE_INTTYPES_H" +as_fn_append ac_header_c_list " stdint.h stdint_h HAVE_STDINT_H" +as_fn_append ac_header_c_list " strings.h strings_h HAVE_STRINGS_H" +as_fn_append ac_header_c_list " sys/stat.h sys_stat_h HAVE_SYS_STAT_H" +as_fn_append ac_header_c_list " sys/types.h sys_types_h HAVE_SYS_TYPES_H" +as_fn_append ac_header_c_list " unistd.h unistd_h HAVE_UNISTD_H" + +# Auxiliary files required by this configure script. +ac_aux_files="config.guess config.sub" + +# Locations in which to look for auxiliary files. +ac_aux_dir_candidates="${srcdir}/tools" + +# Search for a directory containing all of the required auxiliary files, +# $ac_aux_files, from the $PATH-style list $ac_aux_dir_candidates. +# If we don't find one directory that contains all the files we need, +# we report the set of missing files from the *first* directory in +# $ac_aux_dir_candidates and give up. +ac_missing_aux_files="" +ac_first_candidate=: +printf "%s\n" "$as_me:${as_lineno-$LINENO}: looking for aux files: $ac_aux_files" >&5 +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false +for as_dir in $ac_aux_dir_candidates +do + IFS=$as_save_IFS + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac + as_found=: + + printf "%s\n" "$as_me:${as_lineno-$LINENO}: trying $as_dir" >&5 + ac_aux_dir_found=yes + ac_install_sh= + for ac_aux in $ac_aux_files + do + # As a special case, if "install-sh" is required, that requirement + # can be satisfied by any of "install-sh", "install.sh", or "shtool", + # and $ac_install_sh is set appropriately for whichever one is found. + if test x"$ac_aux" = x"install-sh" + then + if test -f "${as_dir}install-sh"; then + printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install-sh found" >&5 + ac_install_sh="${as_dir}install-sh -c" + elif test -f "${as_dir}install.sh"; then + printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install.sh found" >&5 + ac_install_sh="${as_dir}install.sh -c" + elif test -f "${as_dir}shtool"; then + printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}shtool found" >&5 + ac_install_sh="${as_dir}shtool install -c" + else + ac_aux_dir_found=no + if $ac_first_candidate; then + ac_missing_aux_files="${ac_missing_aux_files} install-sh" + else + break + fi + fi + else + if test -f "${as_dir}${ac_aux}"; then + printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}${ac_aux} found" >&5 + else + ac_aux_dir_found=no + if $ac_first_candidate; then + ac_missing_aux_files="${ac_missing_aux_files} ${ac_aux}" + else + break + fi + fi + fi + done + if test "$ac_aux_dir_found" = yes; then + ac_aux_dir="$as_dir" + break + fi + ac_first_candidate=false + + as_found=false +done +IFS=$as_save_IFS +if $as_found +then : + +else $as_nop + as_fn_error $? "cannot find required auxiliary files:$ac_missing_aux_files" "$LINENO" 5 +fi + + +# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +if test -f "${ac_aux_dir}config.guess"; then + ac_config_guess="$SHELL ${ac_aux_dir}config.guess" +fi +if test -f "${ac_aux_dir}config.sub"; then + ac_config_sub="$SHELL ${ac_aux_dir}config.sub" +fi +if test -f "$ac_aux_dir/configure"; then + ac_configure="$SHELL ${ac_aux_dir}configure" +fi + +# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in $ac_precious_vars; do + eval ac_old_set=$ac_cv_env_${ac_var}_set + eval ac_new_set=$ac_env_${ac_var}_set + eval ac_old_val=$ac_cv_env_${ac_var}_value + eval ac_new_val=$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: `$ac_var' was set to `$ac_old_val' in the previous run" >&5 +printf "%s\n" "$as_me: error: `$ac_var' was set to `$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: `$ac_var' was not set in the previous run" >&5 +printf "%s\n" "$as_me: error: `$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then + # differences in whitespace do not lead to failure. + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: `$ac_var' has changed since the previous run:" >&5 +printf "%s\n" "$as_me: error: `$ac_var' has changed since the previous run:" >&2;} + ac_cache_corrupted=: + else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in `$ac_var' since the previous run:" >&5 +printf "%s\n" "$as_me: warning: ignoring whitespace changes in `$ac_var' since the previous run:" >&2;} + eval $ac_var=$ac_old_val + fi + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: former value: `$ac_old_val'" >&5 +printf "%s\n" "$as_me: former value: `$ac_old_val'" >&2;} + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: current value: `$ac_new_val'" >&5 +printf "%s\n" "$as_me: current value: `$ac_new_val'" >&2;} + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in + *'*) ac_arg=$ac_var=`printf "%s\n" "$ac_new_val" | sed "s/'/'\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. + *) as_fn_append ac_configure_args " '$ac_arg'" ;; + esac + fi +done +if $ac_cache_corrupted; then + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 +printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;} + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 +printf "%s\n" "$as_me: error: changes in the environment can compromise the build" >&2;} + as_fn_error $? "run `${MAKE-make} distclean' and/or `rm $cache_file' + and start over" "$LINENO" 5 +fi +## -------------------- ## +## Main body of script. ## +## -------------------- ## + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + +ac_config_headers="$ac_config_headers include/config.h" + + + +libwine_version="1.0" + + + +# Check whether --enable-win16 was given. +if test ${enable_win16+y} +then : + enableval=$enable_win16; +fi + +# Check whether --enable-win64 was given. +if test ${enable_win64+y} +then : + enableval=$enable_win64; +fi + +# Check whether --enable-tests was given. +if test ${enable_tests+y} +then : + enableval=$enable_tests; +fi + +# Check whether --enable-build-id was given. +if test ${enable_build_id+y} +then : + enableval=$enable_build_id; +fi + +# Check whether --enable-maintainer-mode was given. +if test ${enable_maintainer_mode+y} +then : + enableval=$enable_maintainer_mode; +fi + +# Check whether --enable-silent-rules was given. +if test ${enable_silent_rules+y} +then : + enableval=$enable_silent_rules; +fi + +# Check whether --enable-werror was given. +if test ${enable_werror+y} +then : + enableval=$enable_werror; +fi + + + +# Check whether --with-alsa was given. +if test ${with_alsa+y} +then : + withval=$with_alsa; +fi + + +# Check whether --with-capi was given. +if test ${with_capi+y} +then : + withval=$with_capi; +fi + + +# Check whether --with-cms was given. +if test ${with_cms+y} +then : + withval=$with_cms; +fi + + +# Check whether --with-coreaudio was given. +if test ${with_coreaudio+y} +then : + withval=$with_coreaudio; if test "x$withval" = "xno"; then ac_cv_header_CoreAudio_CoreAudio_h=no; fi +fi + + +# Check whether --with-cups was given. +if test ${with_cups+y} +then : + withval=$with_cups; +fi + + +# Check whether --with-dbus was given. +if test ${with_dbus+y} +then : + withval=$with_dbus; +fi + + +# Check whether --with-faudio was given. +if test ${with_faudio+y} +then : + withval=$with_faudio; +fi + + +# Check whether --with-float-abi was given. +if test ${with_float_abi+y} +then : + withval=$with_float_abi; +fi + + +# Check whether --with-fontconfig was given. +if test ${with_fontconfig+y} +then : + withval=$with_fontconfig; +fi + + +# Check whether --with-freetype was given. +if test ${with_freetype+y} +then : + withval=$with_freetype; +fi + + +# Check whether --with-gettext was given. +if test ${with_gettext+y} +then : + withval=$with_gettext; +fi + + +# Check whether --with-gettextpo was given. +if test ${with_gettextpo+y} +then : + withval=$with_gettextpo; if test "x$withval" = "xno"; then ac_cv_header_gettext_po_h=no; fi +fi
# Check whether --with-gphoto was given. -if test "${with_gphoto+set}" = set; then : +if test ${with_gphoto+y} +then : withval=$with_gphoto; fi
# Check whether --with-gnutls was given. -if test "${with_gnutls+set}" = set; then : +if test ${with_gnutls+y} +then : withval=$with_gnutls; fi
# Check whether --with-gsm was given. -if test "${with_gsm+set}" = set; then : +if test ${with_gsm+y} +then : withval=$with_gsm; if test "x$withval" = "xno"; then ac_cv_header_gsm_h=no; ac_cv_header_gsm_gsm_h=no; fi fi
# Check whether --with-gssapi was given. -if test "${with_gssapi+set}" = set; then : +if test ${with_gssapi+y} +then : withval=$with_gssapi; fi
# Check whether --with-gstreamer was given. -if test "${with_gstreamer+set}" = set; then : +if test ${with_gstreamer+y} +then : withval=$with_gstreamer; fi
# Check whether --with-hal was given. -if test "${with_hal+set}" = set; then : +if test ${with_hal+y} +then : withval=$with_hal; fi
# Check whether --with-inotify was given. -if test "${with_inotify+set}" = set; then : +if test ${with_inotify+y} +then : withval=$with_inotify; fi
# Check whether --with-jpeg was given. -if test "${with_jpeg+set}" = set; then : +if test ${with_jpeg+y} +then : withval=$with_jpeg; fi
# Check whether --with-jxrlib was given. -if test "${with_jxrlib+set}" = set; then : +if test ${with_jxrlib+y} +then : withval=$with_jxrlib; fi
# Check whether --with-krb5 was given. -if test "${with_krb5+set}" = set; then : +if test ${with_krb5+y} +then : withval=$with_krb5; fi
# Check whether --with-ldap was given. -if test "${with_ldap+set}" = set; then : +if test ${with_ldap+y} +then : withval=$with_ldap; if test "x$withval" = "xno"; then ac_cv_header_ldap_h=no; ac_cv_header_lber_h=no; fi fi
# Check whether --with-mingw was given. -if test "${with_mingw+set}" = set; then : +if test ${with_mingw+y} +then : withval=$with_mingw; fi
# Check whether --with-mpg123 was given. -if test "${with_mpg123+set}" = set; then : +if test ${with_mpg123+y} +then : withval=$with_mpg123; fi
# Check whether --with-netapi was given. -if test "${with_netapi+set}" = set; then : +if test ${with_netapi+y} +then : withval=$with_netapi; fi
# Check whether --with-openal was given. -if test "${with_openal+set}" = set; then : +if test ${with_openal+y} +then : withval=$with_openal; if test "x$withval" = "xno"; then ac_cv_header_AL_al_h=no; ac_cv_header_OpenAL_al_h=no; fi fi
# Check whether --with-opencl was given. -if test "${with_opencl+set}" = set; then : +if test ${with_opencl+y} +then : withval=$with_opencl; if test "x$withval" = "xno"; then ac_cv_header_CL_cl_h=no; ac_cv_header_OpenCL_opencl_h=no; fi fi
# Check whether --with-opengl was given. -if test "${with_opengl+set}" = set; then : +if test ${with_opengl+y} +then : withval=$with_opengl; fi
# Check whether --with-osmesa was given. -if test "${with_osmesa+set}" = set; then : +if test ${with_osmesa+y} +then : withval=$with_osmesa; fi
# Check whether --with-oss was given. -if test "${with_oss+set}" = set; then : +if test ${with_oss+y} +then : withval=$with_oss; fi
# Check whether --with-pcap was given. -if test "${with_pcap+set}" = set; then : +if test ${with_pcap+y} +then : withval=$with_pcap; if test "x$withval" = "xno"; then ac_cv_header_pcap_pcap_h=no; fi fi
# Check whether --with-png was given. -if test "${with_png+set}" = set; then : +if test ${with_png+y} +then : withval=$with_png; fi
# Check whether --with-pthread was given. -if test "${with_pthread+set}" = set; then : +if test ${with_pthread+y} +then : withval=$with_pthread; if test "x$withval" = "xno"; then ac_cv_header_pthread_h=no; fi fi
# Check whether --with-pulse was given. -if test "${with_pulse+set}" = set; then : +if test ${with_pulse+y} +then : withval=$with_pulse; fi
# Check whether --with-quicktime was given. -if test "${with_quicktime+set}" = set; then : +if test ${with_quicktime+y} +then : withval=$with_quicktime; fi
# Check whether --with-sane was given. -if test "${with_sane+set}" = set; then : +if test ${with_sane+y} +then : withval=$with_sane; fi
# Check whether --with-sdl was given. -if test "${with_sdl+set}" = set; then : +if test ${with_sdl+y} +then : withval=$with_sdl; fi
# Check whether --with-tiff was given. -if test "${with_tiff+set}" = set; then : +if test ${with_tiff+y} +then : withval=$with_tiff; fi
# Check whether --with-udev was given. -if test "${with_udev+set}" = set; then : +if test ${with_udev+y} +then : withval=$with_udev; fi
# Check whether --with-unwind was given. -if test "${with_unwind+set}" = set; then : +if test ${with_unwind+y} +then : withval=$with_unwind; fi
# Check whether --with-usb was given. -if test "${with_usb+set}" = set; then : +if test ${with_usb+y} +then : withval=$with_usb; fi
# Check whether --with-v4l2 was given. -if test "${with_v4l2+set}" = set; then : +if test ${with_v4l2+y} +then : withval=$with_v4l2; fi
# Check whether --with-vkd3d was given. -if test "${with_vkd3d+set}" = set; then : +if test ${with_vkd3d+y} +then : withval=$with_vkd3d; fi
# Check whether --with-vulkan was given. -if test "${with_vulkan+set}" = set; then : +if test ${with_vulkan+y} +then : withval=$with_vulkan; fi
# Check whether --with-xcomposite was given. -if test "${with_xcomposite+set}" = set; then : +if test ${with_xcomposite+y} +then : withval=$with_xcomposite; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xcomposite_h=no; fi fi
# Check whether --with-xcursor was given. -if test "${with_xcursor+set}" = set; then : +if test ${with_xcursor+y} +then : withval=$with_xcursor; if test "x$withval" = "xno"; then ac_cv_header_X11_Xcursor_Xcursor_h=no; fi fi
# Check whether --with-xfixes was given. -if test "${with_xfixes+set}" = set; then : +if test ${with_xfixes+y} +then : withval=$with_xfixes; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xfixes_h=no; fi fi
# Check whether --with-xinerama was given. -if test "${with_xinerama+set}" = set; then : +if test ${with_xinerama+y} +then : withval=$with_xinerama; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xinerama_h=no; fi fi
# Check whether --with-xinput was given. -if test "${with_xinput+set}" = set; then : +if test ${with_xinput+y} +then : withval=$with_xinput; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XInput_h=no; fi fi
# Check whether --with-xinput2 was given. -if test "${with_xinput2+set}" = set; then : +if test ${with_xinput2+y} +then : withval=$with_xinput2; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XInput2_h=no; fi fi
# Check whether --with-xml was given. -if test "${with_xml+set}" = set; then : +if test ${with_xml+y} +then : withval=$with_xml; fi
# Check whether --with-xrandr was given. -if test "${with_xrandr+set}" = set; then : +if test ${with_xrandr+y} +then : withval=$with_xrandr; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xrandr_h=no; fi fi
# Check whether --with-xrender was given. -if test "${with_xrender+set}" = set; then : +if test ${with_xrender+y} +then : withval=$with_xrender; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xrender_h=no; fi fi
# Check whether --with-xshape was given. -if test "${with_xshape+set}" = set; then : +if test ${with_xshape+y} +then : withval=$with_xshape; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_shape_h=no; fi fi
# Check whether --with-xshm was given. -if test "${with_xshm+set}" = set; then : +if test ${with_xshm+y} +then : withval=$with_xshm; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XShm_h=no; fi fi
# Check whether --with-xslt was given. -if test "${with_xslt+set}" = set; then : +if test ${with_xslt+y} +then : withval=$with_xslt; fi
# Check whether --with-xxf86vm was given. -if test "${with_xxf86vm+set}" = set; then : +if test ${with_xxf86vm+y} +then : withval=$with_xxf86vm; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_xf86vmode_h=no; ac_cv_header_X11_extensions_xf86vmproto_h=no; fi fi
# Check whether --with-wine-tools was given. -if test "${with_wine_tools+set}" = set; then : +if test ${with_wine_tools+y} +then : withval=$with_wine_tools; fi
# Check whether --with-wine64 was given. -if test "${with_wine64+set}" = set; then : +if test ${with_wine64+y} +then : withval=$with_wine64; fi
-# Make sure we can run config.sub. -$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || - as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 -$as_echo_n "checking build system type... " >&6; } -if ${ac_cv_build+:} false; then : - $as_echo_n "(cached) " >&6 -else + + + # Make sure we can run config.sub. +$SHELL "${ac_aux_dir}config.sub" sun4 >/dev/null 2>&1 || + as_fn_error $? "cannot run $SHELL ${ac_aux_dir}config.sub" "$LINENO" 5 + +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 +printf %s "checking build system type... " >&6; } +if test ${ac_cv_build+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_build_alias=$build_alias test "x$ac_build_alias" = x && - ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` + ac_build_alias=`$SHELL "${ac_aux_dir}config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 -ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 +ac_cv_build=`$SHELL "${ac_aux_dir}config.sub" $ac_build_alias` || + as_fn_error $? "$SHELL ${ac_aux_dir}config.sub $ac_build_alias failed" "$LINENO" 5
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 -$as_echo "$ac_cv_build" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 +printf "%s\n" "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; @@ -4365,21 +4855,22 @@ IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 -$as_echo_n "checking host system type... " >&6; } -if ${ac_cv_host+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 +printf %s "checking host system type... " >&6; } +if test ${ac_cv_host+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else - ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || - as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 + ac_cv_host=`$SHELL "${ac_aux_dir}config.sub" $host_alias` || + as_fn_error $? "$SHELL ${ac_aux_dir}config.sub $host_alias failed" "$LINENO" 5 fi
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 -$as_echo "$ac_cv_host" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 +printf "%s\n" "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; @@ -4400,13 +4891,14 @@ case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets $(MAKE)" >&5 -$as_echo_n "checking whether ${MAKE-make} sets $(MAKE)... " >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets $(MAKE)" >&5 +printf %s "checking whether ${MAKE-make} sets $(MAKE)... " >&6; } set x ${MAKE-make} -ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -if eval ${ac_cv_prog_make_${ac_make}_set+:} false; then : - $as_echo_n "(cached) " >&6 -else +ac_make=`printf "%s\n" "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if eval test ${ac_cv_prog_make_${ac_make}_set+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat >conftest.make <<_ACEOF SHELL = /bin/sh all: @@ -4422,15 +4914,24 @@ esac rm -f conftest.make fi if eval test $ac_cv_prog_make_${ac_make}_set = yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +printf "%s\n" "yes" >&6; } SET_MAKE= else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi
+ + + + + + + + + ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -4439,11 +4940,12 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CC+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else @@ -4451,11 +4953,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -4466,11 +4972,11 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +printf "%s\n" "$CC" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -4479,11 +4985,12 @@ if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_CC+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else @@ -4491,11 +4998,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -4506,11 +5017,11 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +printf "%s\n" "$ac_ct_CC" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_CC" = x; then @@ -4518,8 +5029,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC @@ -4532,11 +5043,12 @@ if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CC+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else @@ -4544,11 +5056,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -4559,11 +5075,11 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +printf "%s\n" "$CC" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -4572,11 +5088,12 @@ fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CC+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else @@ -4585,15 +5102,19 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then + if test "$as_dir$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -4609,18 +5130,18 @@ if test $ac_prog_rejected = yes; then # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + ac_cv_prog_CC="$as_dir$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +printf "%s\n" "$CC" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -4631,11 +5152,12 @@ if test -z "$CC"; then do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CC+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else @@ -4643,11 +5165,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -4658,11 +5184,11 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 -$as_echo "$CC" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +printf "%s\n" "$CC" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -4675,11 +5201,12 @@ if test -z "$CC"; then do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_CC+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else @@ -4687,11 +5214,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -4702,11 +5233,11 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 -$as_echo "$ac_ct_CC" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +printf "%s\n" "$ac_ct_CC" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -4718,34 +5249,138 @@ done else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}clang", so it can be a program name with args. +set dummy ${ac_tool_prefix}clang; ac_word=$2 +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CC+y} +then : + printf %s "(cached) " >&6 +else $as_nop + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}clang" + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +printf "%s\n" "$CC" >&6; } +else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "clang", so it can be a program name with args. +set dummy clang; ac_word=$2 +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_CC+y} +then : + printf %s "(cached) " >&6 +else $as_nop + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="clang" + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +printf "%s\n" "$ac_ct_CC" >&6; } +else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi +else + CC="$ac_cv_prog_CC" fi
fi
-test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 -$as_echo "$as_me: error: in `$ac_pwd':" >&2;} +test -z "$CC" && { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 +printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in $PATH See `config.log' for more details" "$LINENO" 5; }
# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 -for ac_option in --version -v -V -qversion; do +for ac_option in --version -v -V -qversion -version; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *"* | *`* | *\*) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then @@ -4755,7 +5390,7 @@ $as_echo "$ac_try_echo"; } >&5 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; } done
@@ -4763,7 +5398,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; @@ -4775,9 +5410,9 @@ ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 -$as_echo_n "checking whether the C compiler works... " >&6; } -ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 +printf %s "checking whether the C compiler works... " >&6; } +ac_link_default=`printf "%s\n" "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
# The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" @@ -4798,11 +5433,12 @@ case "(($ac_try" in *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 - test $ac_status = 0; }; then : + printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 + test $ac_status = 0; } +then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, @@ -4819,7 +5455,7 @@ do # certainly right. break;; *.* ) - if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + if test ${ac_cv_exeext+y} && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*(..*)'` fi @@ -4835,44 +5471,46 @@ do done test "$ac_cv_exeext" = no && ac_cv_exeext=
-else +else $as_nop ac_file='' fi -if test -z "$ac_file"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -$as_echo "$as_me: failed program was:" >&5 +if test -z "$ac_file" +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } +printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5
-{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 -$as_echo "$as_me: error: in `$ac_pwd':" >&2;} +{ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 +printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See `config.log' for more details" "$LINENO" 5; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 -$as_echo_n "checking for C compiler default output file name... " >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 -$as_echo "$ac_file" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +printf "%s\n" "yes" >&6; } +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 +printf %s "checking for C compiler default output file name... " >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +printf "%s\n" "$ac_file" >&6; } ac_exeext=$ac_cv_exeext
rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 -$as_echo_n "checking for suffix of executables... " >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 +printf %s "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *"* | *`* | *\*) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 - test $ac_status = 0; }; then : + printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 + test $ac_status = 0; } +then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with @@ -4886,15 +5524,15 @@ for ac_file in conftest.exe conftest conftest.*; do * ) break;; esac done -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 -$as_echo "$as_me: error: in `$ac_pwd':" >&2;} +else $as_nop + { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 +printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See `config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 -$as_echo "$ac_cv_exeext" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 +printf "%s\n" "$ac_cv_exeext" >&6; }
rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext @@ -4903,7 +5541,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <stdio.h> int -main () +main (void) { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; @@ -4915,8 +5553,8 @@ _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 -$as_echo_n "checking whether we are cross compiling... " >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +printf %s "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in @@ -4924,10 +5562,10 @@ case "(($ac_try" in *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in @@ -4935,39 +5573,40 @@ $as_echo "$ac_try_echo"; } >&5 *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 -$as_echo "$as_me: error: in `$ac_pwd':" >&2;} -as_fn_error $? "cannot run C compiled programs. + { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 +printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;} +as_fn_error 77 "cannot run C compiled programs. If you meant to cross compile, use `--host'. See `config.log' for more details" "$LINENO" 5; } fi fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 -$as_echo "$cross_compiling" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +printf "%s\n" "$cross_compiling" >&6; }
rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 -$as_echo_n "checking for suffix of object files... " >&6; } -if ${ac_cv_objext+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 +printf %s "checking for suffix of object files... " >&6; } +if test ${ac_cv_objext+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; @@ -4981,11 +5620,12 @@ case "(($ac_try" in *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 - test $ac_status = 0; }; then : + printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 + test $ac_status = 0; } +then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in @@ -4994,31 +5634,32 @@ $as_echo "$ac_try_echo"; } >&5 break;; esac done -else - $as_echo "$as_me: failed program was:" >&5 +else $as_nop + printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5
-{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 -$as_echo "$as_me: error: in `$ac_pwd':" >&2;} +{ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 +printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See `config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 -$as_echo "$ac_cv_objext" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 +printf "%s\n" "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 -$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if ${ac_cv_c_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5 +printf %s "checking whether the compiler supports GNU C... " >&6; } +if test ${ac_cv_c_compiler_gnu+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) { #ifndef __GNUC__ choke me @@ -5028,29 +5669,33 @@ main () return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_compiler_gnu=yes -else +else $as_nop ac_compiler_gnu=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 -$as_echo "$ac_cv_c_compiler_gnu" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 +printf "%s\n" "$ac_cv_c_compiler_gnu" >&6; } +ac_compiler_gnu=$ac_cv_c_compiler_gnu + if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi -ac_test_CFLAGS=${CFLAGS+set} +ac_test_CFLAGS=${CFLAGS+y} ac_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 -$as_echo_n "checking whether $CC accepts -g... " >&6; } -if ${ac_cv_prog_cc_g+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 +printf %s "checking whether $CC accepts -g... " >&6; } +if test ${ac_cv_prog_cc_g+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no @@ -5059,57 +5704,60 @@ else /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_prog_cc_g=yes -else +else $as_nop CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then :
-else +else $as_nop ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_prog_cc_g=yes fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 -$as_echo "$ac_cv_prog_cc_g" >&6; } -if test "$ac_test_CFLAGS" = set; then +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 +printf "%s\n" "$ac_cv_prog_cc_g" >&6; } +if test $ac_test_CFLAGS; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then @@ -5124,94 +5772,144 @@ else CFLAGS= fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 -$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if ${ac_cv_prog_cc_c89+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_cv_prog_cc_c89=no +ac_prog_cc_stdc=no +if test x$ac_prog_cc_stdc = xno +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5 +printf %s "checking for $CC option to enable C11 features... " >&6; } +if test ${ac_cv_prog_cc_c11+y} +then : + printf %s "(cached) " >&6 +else $as_nop + ac_cv_prog_cc_c11=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -#include <stdarg.h> -#include <stdio.h> -struct stat; -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; +$ac_c_conftest_c11_program +_ACEOF +for ac_arg in '' -std=gnu11 +do + CC="$ac_save_CC $ac_arg" + if ac_fn_c_try_compile "$LINENO" +then : + ac_cv_prog_cc_c11=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext conftest.beam + test "x$ac_cv_prog_cc_c11" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC +fi
-/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters - inside strings and character constants. */ -#define FOO(x) 'x' -int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; +if test "x$ac_cv_prog_cc_c11" = xno +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +printf "%s\n" "unsupported" >&6; } +else $as_nop + if test "x$ac_cv_prog_cc_c11" = x +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +printf "%s\n" "none needed" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5 +printf "%s\n" "$ac_cv_prog_cc_c11" >&6; } + CC="$CC $ac_cv_prog_cc_c11" +fi + ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c11 + ac_prog_cc_stdc=c11 +fi +fi +if test x$ac_prog_cc_stdc = xno +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5 +printf %s "checking for $CC option to enable C99 features... " >&6; } +if test ${ac_cv_prog_cc_c99+y} +then : + printf %s "(cached) " >&6 +else $as_nop + ac_cv_prog_cc_c99=no +ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$ac_c_conftest_c99_program +_ACEOF +for ac_arg in '' -std=gnu99 -std=c99 -c99 -qlanglvl=extc1x -qlanglvl=extc99 -AC99 -D_STDC_C99= +do + CC="$ac_save_CC $ac_arg" + if ac_fn_c_try_compile "$LINENO" +then : + ac_cv_prog_cc_c99=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext conftest.beam + test "x$ac_cv_prog_cc_c99" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC +fi
-int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} +if test "x$ac_cv_prog_cc_c99" = xno +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +printf "%s\n" "unsupported" >&6; } +else $as_nop + if test "x$ac_cv_prog_cc_c99" = x +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +printf "%s\n" "none needed" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 +printf "%s\n" "$ac_cv_prog_cc_c99" >&6; } + CC="$CC $ac_cv_prog_cc_c99" +fi + ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c99 + ac_prog_cc_stdc=c99 +fi +fi +if test x$ac_prog_cc_stdc = xno +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5 +printf %s "checking for $CC option to enable C89 features... " >&6; } +if test ${ac_cv_prog_cc_c89+y} +then : + printf %s "(cached) " >&6 +else $as_nop + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$ac_c_conftest_c89_program _ACEOF -for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ - -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" - if ac_fn_c_try_compile "$LINENO"; then : + if ac_fn_c_try_compile "$LINENO" +then : ac_cv_prog_cc_c89=$ac_arg fi -rm -f core conftest.err conftest.$ac_objext +rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC - fi -# AC_CACHE_VAL -case "x$ac_cv_prog_cc_c89" in - x) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 -$as_echo "none needed" >&6; } ;; - xno) - { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 -$as_echo "unsupported" >&6; } ;; - *) - CC="$CC $ac_cv_prog_cc_c89" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 -$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; -esac -if test "x$ac_cv_prog_cc_c89" != xno; then :
+if test "x$ac_cv_prog_cc_c89" = xno +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +printf "%s\n" "unsupported" >&6; } +else $as_nop + if test "x$ac_cv_prog_cc_c89" = x +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +printf "%s\n" "none needed" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 +printf "%s\n" "$ac_cv_prog_cc_c89" >&6; } + CC="$CC $ac_cv_prog_cc_c89" +fi + ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c89 + ac_prog_cc_stdc=c89 +fi fi
ac_ext=c @@ -5220,6 +5918,12 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu
+ + + + + + ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -5230,15 +5934,16 @@ if test -z "$CXX"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC clang++ do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CXX+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else @@ -5246,11 +5951,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -5261,11 +5970,11 @@ fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 -$as_echo "$CXX" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 +printf "%s\n" "$CXX" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -5274,15 +5983,16 @@ fi fi if test -z "$CXX"; then ac_ct_CXX=$CXX - for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC clang++ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CXX+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_CXX+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else @@ -5290,11 +6000,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CXX="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -5305,11 +6019,11 @@ fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 -$as_echo "$ac_ct_CXX" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 +printf "%s\n" "$ac_ct_CXX" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -5321,8 +6035,8 @@ done else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX @@ -5332,7 +6046,7 @@ fi fi fi # Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do @@ -5342,7 +6056,7 @@ case "(($ac_try" in *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then @@ -5352,20 +6066,21 @@ $as_echo "$ac_try_echo"; } >&5 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; } done
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 -$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } -if ${ac_cv_cxx_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C++" >&5 +printf %s "checking whether the compiler supports GNU C++... " >&6; } +if test ${ac_cv_cxx_compiler_gnu+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) { #ifndef __GNUC__ choke me @@ -5375,29 +6090,33 @@ main () return 0; } _ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : +if ac_fn_cxx_try_compile "$LINENO" +then : ac_compiler_gnu=yes -else +else $as_nop ac_compiler_gnu=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 -$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 +printf "%s\n" "$ac_cv_cxx_compiler_gnu" >&6; } +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + if test $ac_compiler_gnu = yes; then GXX=yes else GXX= fi -ac_test_CXXFLAGS=${CXXFLAGS+set} +ac_test_CXXFLAGS=${CXXFLAGS+y} ac_save_CXXFLAGS=$CXXFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 -$as_echo_n "checking whether $CXX accepts -g... " >&6; } -if ${ac_cv_prog_cxx_g+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 +printf %s "checking whether $CXX accepts -g... " >&6; } +if test ${ac_cv_prog_cxx_g+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no @@ -5406,57 +6125,60 @@ else /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : +if ac_fn_cxx_try_compile "$LINENO" +then : ac_cv_prog_cxx_g=yes -else +else $as_nop CXXFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : +if ac_fn_cxx_try_compile "$LINENO" +then :
-else +else $as_nop ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : +if ac_fn_cxx_try_compile "$LINENO" +then : ac_cv_prog_cxx_g=yes fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cxx_werror_flag=$ac_save_cxx_werror_flag fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 -$as_echo "$ac_cv_prog_cxx_g" >&6; } -if test "$ac_test_CXXFLAGS" = set; then +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 +printf "%s\n" "$ac_cv_prog_cxx_g" >&6; } +if test $ac_test_CXXFLAGS; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then @@ -5471,6 +6193,100 @@ else CXXFLAGS= fi fi +ac_prog_cxx_stdcxx=no +if test x$ac_prog_cxx_stdcxx = xno +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++11 features" >&5 +printf %s "checking for $CXX option to enable C++11 features... " >&6; } +if test ${ac_cv_prog_cxx_11+y} +then : + printf %s "(cached) " >&6 +else $as_nop + ac_cv_prog_cxx_11=no +ac_save_CXX=$CXX +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$ac_cxx_conftest_cxx11_program +_ACEOF +for ac_arg in '' -std=gnu++11 -std=gnu++0x -std=c++11 -std=c++0x -qlanglvl=extended0x -AA +do + CXX="$ac_save_CXX $ac_arg" + if ac_fn_cxx_try_compile "$LINENO" +then : + ac_cv_prog_cxx_cxx11=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext conftest.beam + test "x$ac_cv_prog_cxx_cxx11" != "xno" && break +done +rm -f conftest.$ac_ext +CXX=$ac_save_CXX +fi + +if test "x$ac_cv_prog_cxx_cxx11" = xno +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +printf "%s\n" "unsupported" >&6; } +else $as_nop + if test "x$ac_cv_prog_cxx_cxx11" = x +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +printf "%s\n" "none needed" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_cxx11" >&5 +printf "%s\n" "$ac_cv_prog_cxx_cxx11" >&6; } + CXX="$CXX $ac_cv_prog_cxx_cxx11" +fi + ac_cv_prog_cxx_stdcxx=$ac_cv_prog_cxx_cxx11 + ac_prog_cxx_stdcxx=cxx11 +fi +fi +if test x$ac_prog_cxx_stdcxx = xno +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++98 features" >&5 +printf %s "checking for $CXX option to enable C++98 features... " >&6; } +if test ${ac_cv_prog_cxx_98+y} +then : + printf %s "(cached) " >&6 +else $as_nop + ac_cv_prog_cxx_98=no +ac_save_CXX=$CXX +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$ac_cxx_conftest_cxx98_program +_ACEOF +for ac_arg in '' -std=gnu++98 -std=c++98 -qlanglvl=extended -AA +do + CXX="$ac_save_CXX $ac_arg" + if ac_fn_cxx_try_compile "$LINENO" +then : + ac_cv_prog_cxx_cxx98=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext conftest.beam + test "x$ac_cv_prog_cxx_cxx98" != "xno" && break +done +rm -f conftest.$ac_ext +CXX=$ac_save_CXX +fi + +if test "x$ac_cv_prog_cxx_cxx98" = xno +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +printf "%s\n" "unsupported" >&6; } +else $as_nop + if test "x$ac_cv_prog_cxx_cxx98" = x +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +printf "%s\n" "none needed" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_cxx98" >&5 +printf "%s\n" "$ac_cv_prog_cxx_cxx98" >&6; } + CXX="$CXX $ac_cv_prog_cxx_cxx98" +fi + ac_cv_prog_cxx_stdcxx=$ac_cv_prog_cxx_cxx98 + ac_prog_cxx_stdcxx=cxx98 +fi +fi + ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -5480,11 +6296,12 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cpp", so it can be a program name with args. set dummy ${ac_tool_prefix}cpp; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CPPBIN+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CPPBIN+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$CPPBIN"; then ac_cv_prog_CPPBIN="$CPPBIN" # Let the user override the test. else @@ -5492,11 +6309,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CPPBIN="${ac_tool_prefix}cpp" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -5507,11 +6328,11 @@ fi fi CPPBIN=$ac_cv_prog_CPPBIN if test -n "$CPPBIN"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPPBIN" >&5 -$as_echo "$CPPBIN" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CPPBIN" >&5 +printf "%s\n" "$CPPBIN" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -5520,11 +6341,12 @@ if test -z "$ac_cv_prog_CPPBIN"; then ac_ct_CPPBIN=$CPPBIN # Extract the first word of "cpp", so it can be a program name with args. set dummy cpp; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CPPBIN+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_CPPBIN+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$ac_ct_CPPBIN"; then ac_cv_prog_ac_ct_CPPBIN="$ac_ct_CPPBIN" # Let the user override the test. else @@ -5532,11 +6354,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CPPBIN="cpp" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -5547,11 +6373,11 @@ fi fi ac_ct_CPPBIN=$ac_cv_prog_ac_ct_CPPBIN if test -n "$ac_ct_CPPBIN"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CPPBIN" >&5 -$as_echo "$ac_ct_CPPBIN" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CPPBIN" >&5 +printf "%s\n" "$ac_ct_CPPBIN" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_CPPBIN" = x; then @@ -5559,8 +6385,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CPPBIN=$ac_ct_CPPBIN @@ -5570,18 +6396,17 @@ else fi
-cat >>confdefs.h <<_ACEOF -#define EXEEXT "$ac_exeext" -_ACEOF +printf "%s\n" "#define EXEEXT "$ac_exeext"" >>confdefs.h
if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ld", so it can be a program name with args. set dummy ${ac_tool_prefix}ld; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_LD+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_LD+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$LD"; then ac_cv_prog_LD="$LD" # Let the user override the test. else @@ -5589,11 +6414,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_LD="${ac_tool_prefix}ld" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -5604,11 +6433,11 @@ fi fi LD=$ac_cv_prog_LD if test -n "$LD"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 -$as_echo "$LD" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 +printf "%s\n" "$LD" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -5617,11 +6446,12 @@ if test -z "$ac_cv_prog_LD"; then ac_ct_LD=$LD # Extract the first word of "ld", so it can be a program name with args. set dummy ld; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_LD+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_LD+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$ac_ct_LD"; then ac_cv_prog_ac_ct_LD="$ac_ct_LD" # Let the user override the test. else @@ -5629,11 +6459,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LD="ld" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -5644,11 +6478,11 @@ fi fi ac_ct_LD=$ac_cv_prog_ac_ct_LD if test -n "$ac_ct_LD"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LD" >&5 -$as_echo "$ac_ct_LD" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LD" >&5 +printf "%s\n" "$ac_ct_LD" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_LD" = x; then @@ -5656,8 +6490,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac LD=$ac_ct_LD @@ -5686,32 +6520,34 @@ case $host in CC="$CC -m32" CXX="$CXX -m32"
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC works" >&5 -$as_echo_n "checking whether $CC works... " >&6; } -if ${wine_cv_cc_m32+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC works" >&5 +printf %s "checking whether $CC works... " >&6; } +if test ${wine_cv_cc_m32+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_cc_m32=yes -else +else $as_nop wine_cv_cc_m32=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_cc_m32" >&5 -$as_echo "$wine_cv_cc_m32" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_cc_m32" >&5 +printf "%s\n" "$wine_cv_cc_m32" >&6; } test $wine_cv_cc_m32 != no || as_fn_error $? "Cannot build a 32-bit program, you need to install 32-bit development libraries." "$LINENO" 5 host_cpu="i386" notice_platform="32-bit " @@ -5723,31 +6559,33 @@ $as_echo "$wine_cv_cc_m32" >&6; } else if test "x${GCC}" = "xyes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports __builtin_ms_va_list" >&5 -$as_echo_n "checking whether $CC supports __builtin_ms_va_list... " >&6; } -if ${wine_cv_builtin_ms_va_list+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC supports __builtin_ms_va_list" >&5 +printf %s "checking whether $CC supports __builtin_ms_va_list... " >&6; } +if test ${wine_cv_builtin_ms_va_list+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <stdarg.h> int -main () +main (void) { void func(__builtin_ms_va_list *args); ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : wine_cv_builtin_ms_va_list=yes -else +else $as_nop wine_cv_builtin_ms_va_list=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_builtin_ms_va_list" >&5 -$as_echo "$wine_cv_builtin_ms_va_list" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_builtin_ms_va_list" >&5 +printf "%s\n" "$wine_cv_builtin_ms_va_list" >&6; } test $wine_cv_builtin_ms_va_list != no || as_fn_error $? "You need gcc >= 4.4 or clang >= 3.8 to build Wine as 64-bit." "$LINENO" 5 fi CC="$CC -m64" @@ -5761,32 +6599,34 @@ $as_echo "$wine_cv_builtin_ms_va_list" >&6; } fi ;; arm*) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports Thumb-2" >&5 -$as_echo_n "checking whether $CC supports Thumb-2... " >&6; } -if ${wine_cv_thumb2+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC supports Thumb-2" >&5 +printf %s "checking whether $CC supports Thumb-2... " >&6; } +if test ${wine_cv_thumb2+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) { asm(".syntax unified\n\t.thumb\n\tldm r0,{r0-r8}"); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_thumb2=yes -else +else $as_nop wine_cv_thumb2=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_thumb2" >&5 -$as_echo "$wine_cv_thumb2" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_thumb2" >&5 +printf "%s\n" "$wine_cv_thumb2" >&6; } if test x"$wine_cv_thumb2" = xyes then CFLAGS="$CFLAGS -mthumb" @@ -5806,32 +6646,34 @@ $as_echo "$wine_cv_thumb2" >&6; } float_abi=softfp saved_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -mfloat-abi=$float_abi" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -mfloat-abi=$float_abi" >&5 -$as_echo_n "checking whether $CC supports -mfloat-abi=$float_abi... " >&6; } -if ${wine_cv_float_abi+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -mfloat-abi=$float_abi" >&5 +printf %s "checking whether $CC supports -mfloat-abi=$float_abi... " >&6; } +if test ${wine_cv_float_abi+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) { asm("vmrs r2,fpscr"); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_float_abi=yes -else +else $as_nop wine_cv_float_abi=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_float_abi" >&5 -$as_echo "$wine_cv_float_abi" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_float_abi" >&5 +printf "%s\n" "$wine_cv_float_abi" >&6; } if test $wine_cv_float_abi = no then float_abi=soft @@ -5845,31 +6687,33 @@ $as_echo "$wine_cv_float_abi" >&6; } TARGETFLAGS="$TARGETFLAGS -mfloat-abi=$float_abi" ;; aarch64*) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports __builtin_ms_va_list" >&5 -$as_echo_n "checking whether $CC supports __builtin_ms_va_list... " >&6; } -if ${wine_cv_builtin_ms_va_list+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC supports __builtin_ms_va_list" >&5 +printf %s "checking whether $CC supports __builtin_ms_va_list... " >&6; } +if test ${wine_cv_builtin_ms_va_list+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <stdarg.h> int -main () +main (void) { void func(__builtin_ms_va_list *args); ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : wine_cv_builtin_ms_va_list=yes -else +else $as_nop wine_cv_builtin_ms_va_list=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_builtin_ms_va_list" >&5 -$as_echo "$wine_cv_builtin_ms_va_list" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_builtin_ms_va_list" >&5 +printf "%s\n" "$wine_cv_builtin_ms_va_list" >&6; } test $wine_cv_builtin_ms_va_list != no || as_fn_error $? "You need clang >= 5.0 to build Wine for arm64." "$LINENO" 5 enable_wow64=${enable_wow64:-yes} enable_wow64win=${enable_wow64win:-yes} @@ -5907,11 +6751,12 @@ case $host_cpu in ;; esac
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the directory containing the Wine tools" >&5 -$as_echo_n "checking for the directory containing the Wine tools... " >&6; } -if ${wine_cv_toolsdir+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for the directory containing the Wine tools" >&5 +printf %s "checking for the directory containing the Wine tools... " >&6; } +if test ${wine_cv_toolsdir+y} +then : + printf %s "(cached) " >&6 +else $as_nop wine_cv_toolsdir="$with_wine_tools" if test -z "$with_wine_tools"; then if test "$cross_compiling" = "yes"; then @@ -5921,8 +6766,8 @@ else fi fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_toolsdir" >&5 -$as_echo "$wine_cv_toolsdir" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_toolsdir" >&5 +printf "%s\n" "$wine_cv_toolsdir" >&6; } if test -z "$wine_cv_toolsdir"; then wine_makedep=tools/makedep TOOLSDIR="." @@ -5945,11 +6790,12 @@ for ac_prog in flex do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_FLEX+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_FLEX+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$FLEX"; then ac_cv_prog_FLEX="$FLEX" # Let the user override the test. else @@ -5957,11 +6803,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_FLEX="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -5972,11 +6822,11 @@ fi fi FLEX=$ac_cv_prog_FLEX if test -n "$FLEX"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FLEX" >&5 -$as_echo "$FLEX" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $FLEX" >&5 +printf "%s\n" "$FLEX" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -5988,11 +6838,12 @@ if test "$FLEX" = "none" then as_fn_error $? "no suitable flex found. Please install the 'flex' package." "$LINENO" 5 fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether flex is recent enough" >&5 -$as_echo_n "checking whether flex is recent enough... " >&6; } -if ${wine_cv_recent_flex+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether flex is recent enough" >&5 +printf %s "checking whether flex is recent enough... " >&6; } +if test ${wine_cv_recent_flex+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat >conftest.l <<EOF %top{ #include "prediluvian.h" @@ -6006,19 +6857,20 @@ EOF wine_cv_recent_flex=no fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_recent_flex" >&5 -$as_echo "$wine_cv_recent_flex" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_recent_flex" >&5 +printf "%s\n" "$wine_cv_recent_flex" >&6; } test $wine_cv_recent_flex != no || as_fn_error $? "Your flex version is too old. Please install flex version 2.5.33 or newer." "$LINENO" 5
for ac_prog in bison do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_BISON+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_BISON+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$BISON"; then ac_cv_prog_BISON="$BISON" # Let the user override the test. else @@ -6026,11 +6878,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_BISON="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -6041,11 +6897,11 @@ fi fi BISON=$ac_cv_prog_BISON if test -n "$BISON"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $BISON" >&5 -$as_echo "$BISON" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $BISON" >&5 +printf "%s\n" "$BISON" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -6057,11 +6913,12 @@ if test "$BISON" = "none" then as_fn_error $? "no suitable bison found. Please install the 'bison' package." "$LINENO" 5 fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether bison is recent enough" >&5 -$as_echo_n "checking whether bison is recent enough... " >&6; } -if ${wine_cv_recent_bison+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether bison is recent enough" >&5 +printf %s "checking whether bison is recent enough... " >&6; } +if test ${wine_cv_recent_bison+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat >conftest.y <<EOF %define parse.error verbose %% @@ -6074,8 +6931,8 @@ EOF wine_cv_recent_bison=no fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_recent_bison" >&5 -$as_echo "$wine_cv_recent_bison" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_recent_bison" >&5 +printf "%s\n" "$wine_cv_recent_bison" >&6; } test $wine_cv_recent_bison != no || as_fn_error $? "Your bison version is too old. Please install bison version 3.0 or newer." "$LINENO" 5
if test -n "$ac_tool_prefix"; then @@ -6083,11 +6940,12 @@ if test -n "$ac_tool_prefix"; then do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AR+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_AR+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else @@ -6095,11 +6953,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -6110,11 +6972,11 @@ fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 -$as_echo "$AR" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 +printf "%s\n" "$AR" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -6127,11 +6989,12 @@ if test -z "$AR"; then do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_AR+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_AR+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else @@ -6139,11 +7002,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -6154,11 +7021,11 @@ fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 -$as_echo "$ac_ct_AR" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 +printf "%s\n" "$ac_ct_AR" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -6170,8 +7037,8 @@ done else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR @@ -6181,11 +7048,12 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_STRIP+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else @@ -6193,11 +7061,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -6208,11 +7080,11 @@ fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -$as_echo "$STRIP" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +printf "%s\n" "$STRIP" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -6221,11 +7093,12 @@ if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_STRIP+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_STRIP+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else @@ -6233,11 +7106,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -6248,11 +7125,11 @@ fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -$as_echo "$ac_ct_STRIP" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +printf "%s\n" "$ac_ct_STRIP" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_STRIP" = x; then @@ -6260,8 +7137,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP @@ -6273,11 +7150,12 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_RANLIB+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else @@ -6285,11 +7163,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -6300,11 +7182,11 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 -$as_echo "$RANLIB" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 +printf "%s\n" "$RANLIB" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -6313,11 +7195,12 @@ if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_RANLIB+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else @@ -6325,11 +7208,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -6340,11 +7227,11 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 -$as_echo "$ac_ct_RANLIB" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 +printf "%s\n" "$ac_ct_RANLIB" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_RANLIB" = x; then @@ -6352,8 +7239,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB @@ -6362,22 +7249,23 @@ else RANLIB="$ac_cv_prog_RANLIB" fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 -$as_echo_n "checking whether ln -s works... " >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 +printf %s "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +printf "%s\n" "yes" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 -$as_echo "no, using $LN_S" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 +printf "%s\n" "no, using $LN_S" >&6; } fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 -$as_echo_n "checking for grep that handles long lines and -e... " >&6; } -if ${ac_cv_path_GREP+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 +printf %s "checking for grep that handles long lines and -e... " >&6; } +if test ${ac_cv_path_GREP+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST @@ -6385,10 +7273,15 @@ else for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in grep ggrep; do + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac + for ac_prog in grep ggrep + do for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + ac_path_GREP="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP @@ -6397,13 +7290,13 @@ case `"$ac_path_GREP" --version 2>&1` in ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 - $as_echo_n 0123456789 >"conftest.in" + printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" - $as_echo 'GREP' >> "conftest.nl" + printf "%s\n" 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val @@ -6431,16 +7324,17 @@ else fi
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 -$as_echo "$ac_cv_path_GREP" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 +printf "%s\n" "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP"
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 -$as_echo_n "checking for egrep... " >&6; } -if ${ac_cv_path_EGREP+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 +printf %s "checking for egrep... " >&6; } +if test ${ac_cv_path_EGREP+y} +then : + printf %s "(cached) " >&6 +else $as_nop if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else @@ -6451,10 +7345,15 @@ else for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_prog in egrep; do + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac + for ac_prog in egrep + do for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + ac_path_EGREP="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP @@ -6463,13 +7362,13 @@ case `"$ac_path_EGREP" --version 2>&1` in ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 - $as_echo_n 0123456789 >"conftest.in" + printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" - $as_echo 'EGREP' >> "conftest.nl" + printf "%s\n" 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val @@ -6498,18 +7397,19 @@ fi
fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 -$as_echo "$ac_cv_path_EGREP" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 +printf "%s\n" "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP"
# Extract the first word of "ldconfig", so it can be a program name with args. set dummy ldconfig; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_LDCONFIG+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_path_LDCONFIG+y} +then : + printf %s "(cached) " >&6 +else $as_nop case $LDCONFIG in [\/]* | ?:[\/]*) ac_cv_path_LDCONFIG="$LDCONFIG" # Let the user override the test with a path. @@ -6519,11 +7419,15 @@ else for as_dir in /sbin /usr/sbin $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_LDCONFIG="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then + ac_cv_path_LDCONFIG="$as_dir$ac_word$ac_exec_ext" + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -6536,11 +7440,11 @@ esac fi LDCONFIG=$ac_cv_path_LDCONFIG if test -n "$LDCONFIG"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LDCONFIG" >&5 -$as_echo "$LDCONFIG" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LDCONFIG" >&5 +printf "%s\n" "$LDCONFIG" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -6548,11 +7452,12 @@ for ac_prog in msgfmt do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_MSGFMT+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_MSGFMT+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$MSGFMT"; then ac_cv_prog_MSGFMT="$MSGFMT" # Let the user override the test. else @@ -6560,11 +7465,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_MSGFMT="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -6575,11 +7484,11 @@ fi fi MSGFMT=$ac_cv_prog_MSGFMT if test -n "$MSGFMT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 -$as_echo "$MSGFMT" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 +printf "%s\n" "$MSGFMT" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -6587,14 +7496,16 @@ fi done test -n "$MSGFMT" || MSGFMT="false"
-if ${ac_tool_prefix+:} false; then : +if test ${ac_tool_prefix+y} +then : # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_PKG_CONFIG+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_PKG_CONFIG+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$PKG_CONFIG"; then ac_cv_prog_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test. else @@ -6602,11 +7513,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_PKG_CONFIG="${ac_tool_prefix}pkg-config" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -6617,27 +7532,30 @@ fi fi PKG_CONFIG=$ac_cv_prog_PKG_CONFIG if test -n "$PKG_CONFIG"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 -$as_echo "$PKG_CONFIG" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 +printf "%s\n" "$PKG_CONFIG" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
fi -if ${ac_cv_prog_PKG_CONFIG:+false} :; then : - if test "x$cross_compiling" = xyes; then : +if ${ac_cv_prog_PKG_CONFIG:+false} : +then : + if test "x$cross_compiling" = xyes +then :
-else +else $as_nop { ac_cv_prog_PKG_CONFIG=; unset ac_cv_prog_PKG_CONFIG;} # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_PKG_CONFIG+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_PKG_CONFIG+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$PKG_CONFIG"; then ac_cv_prog_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test. else @@ -6645,11 +7563,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_PKG_CONFIG="pkg-config" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -6660,16 +7582,16 @@ fi fi PKG_CONFIG=$ac_cv_prog_PKG_CONFIG if test -n "$PKG_CONFIG"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 -$as_echo "$PKG_CONFIG" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 +printf "%s\n" "$PKG_CONFIG" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
fi -else +else $as_nop PKG_CONFIG=$ac_cv_prog_PKG_CONFIG fi
@@ -6685,11 +7607,12 @@ else do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_FONTFORGE+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_FONTFORGE+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$FONTFORGE"; then ac_cv_prog_FONTFORGE="$FONTFORGE" # Let the user override the test. else @@ -6697,11 +7620,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_FONTFORGE="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -6712,11 +7639,11 @@ fi fi FONTFORGE=$ac_cv_prog_FONTFORGE if test -n "$FONTFORGE"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FONTFORGE" >&5 -$as_echo "$FONTFORGE" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $FONTFORGE" >&5 +printf "%s\n" "$FONTFORGE" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -6728,11 +7655,12 @@ test -n "$FONTFORGE" || FONTFORGE="false" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_RSVG+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_RSVG+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$RSVG"; then ac_cv_prog_RSVG="$RSVG" # Let the user override the test. else @@ -6740,11 +7668,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_RSVG="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -6755,11 +7687,11 @@ fi fi RSVG=$ac_cv_prog_RSVG if test -n "$RSVG"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RSVG" >&5 -$as_echo "$RSVG" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $RSVG" >&5 +printf "%s\n" "$RSVG" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -6771,11 +7703,12 @@ test -n "$RSVG" || RSVG="false" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CONVERT+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CONVERT+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$CONVERT"; then ac_cv_prog_CONVERT="$CONVERT" # Let the user override the test. else @@ -6783,11 +7716,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CONVERT="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -6798,11 +7735,11 @@ fi fi CONVERT=$ac_cv_prog_CONVERT if test -n "$CONVERT"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CONVERT" >&5 -$as_echo "$CONVERT" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CONVERT" >&5 +printf "%s\n" "$CONVERT" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -6814,11 +7751,12 @@ test -n "$CONVERT" || CONVERT="false" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ICOTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ICOTOOL+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$ICOTOOL"; then ac_cv_prog_ICOTOOL="$ICOTOOL" # Let the user override the test. else @@ -6826,11 +7764,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ICOTOOL="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -6841,11 +7783,11 @@ fi fi ICOTOOL=$ac_cv_prog_ICOTOOL if test -n "$ICOTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ICOTOOL" >&5 -$as_echo "$ICOTOOL" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ICOTOOL" >&5 +printf "%s\n" "$ICOTOOL" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -6860,8 +7802,8 @@ test -n "$ICOTOOL" || ICOTOOL="false" then as_fn_error $? "You need imagemagick to rebuild icons in maintainer mode." "$LINENO" 5 else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for recent enough imagemagick" >&5 -$as_echo_n "checking for recent enough imagemagick... " >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for recent enough imagemagick" >&5 +printf %s "checking for recent enough imagemagick... " >&6; } convert_version=`convert --version | head -n1` if test "x$convert_version" != "x" then @@ -6874,12 +7816,12 @@ $as_echo_n "checking for recent enough imagemagick... " >&6; } fi if test "$CONVERT" = false then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no ($convert_version_major.$convert_version_minor)" >&5 -$as_echo "no ($convert_version_major.$convert_version_minor)" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no ($convert_version_major.$convert_version_minor)" >&5 +printf "%s\n" "no ($convert_version_major.$convert_version_minor)" >&6; } as_fn_error $? "You need imagemagick version 6.6 or newer to rebuild icons in maintainer mode." "$LINENO" 5 else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes ($convert_version_major.$convert_version_minor)" >&5 -$as_echo "yes ($convert_version_major.$convert_version_minor)" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes ($convert_version_major.$convert_version_minor)" >&5 +printf "%s\n" "yes ($convert_version_major.$convert_version_minor)" >&6; } fi fi
@@ -6887,8 +7829,8 @@ $as_echo "yes ($convert_version_major.$convert_version_minor)" >&6; } then as_fn_error $? "You need icotool to rebuild icons in maintainer mode." "$LINENO" 5 else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for recent enough icotool" >&5 -$as_echo_n "checking for recent enough icotool... " >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for recent enough icotool" >&5 +printf %s "checking for recent enough icotool... " >&6; } icotool_version=`icotool --version | head -n1` if test "x$icotool_version" != "x" then @@ -6902,12 +7844,12 @@ $as_echo_n "checking for recent enough icotool... " >&6; } fi if test "$ICOTOOL" = false then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no ($icotool_version_major.$icotool_version_minor)" >&5 -$as_echo "no ($icotool_version_major.$icotool_version_minor)" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no ($icotool_version_major.$icotool_version_minor)" >&5 +printf "%s\n" "no ($icotool_version_major.$icotool_version_minor)" >&6; } as_fn_error $? "You need icotool version 0.29.0 or newer to rebuild icons in maintainer mode." "$LINENO" 5 else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes ($icotool_version_major.$icotool_version_minor)" >&5 -$as_echo "yes ($icotool_version_major.$icotool_version_minor)" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes ($icotool_version_major.$icotool_version_minor)" >&5 +printf "%s\n" "yes ($icotool_version_major.$icotool_version_minor)" >&6; } fi fi
@@ -6920,11 +7862,12 @@ fi test "x$with_gettext" != xno || MSGFMT=false if test "$MSGFMT" != "false" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether msgfmt supports contexts" >&5 -$as_echo_n "checking whether msgfmt supports contexts... " >&6; } -if ${wine_cv_msgfmt_contexts+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether msgfmt supports contexts" >&5 +printf %s "checking whether msgfmt supports contexts... " >&6; } +if test ${wine_cv_msgfmt_contexts+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat >conftest.po <<EOF # comment msgctxt "ctxt" @@ -6938,11 +7881,12 @@ EOF wine_cv_msgfmt_contexts=no fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_msgfmt_contexts" >&5 -$as_echo "$wine_cv_msgfmt_contexts" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_msgfmt_contexts" >&5 +printf "%s\n" "$wine_cv_msgfmt_contexts" >&6; } test $wine_cv_msgfmt_contexts != no || MSGFMT=false fi -if test "$MSGFMT" = false; then : +if test "$MSGFMT" = false +then : case "x$with_gettext" in x) as_fn_append wine_warnings "|gettext tools not found (or too old), translations won't be built." ;; xno) ;; @@ -6953,11 +7897,12 @@ enable_po=${enable_po:-no} fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for i386_set_ldt in -li386" >&5 -$as_echo_n "checking for i386_set_ldt in -li386... " >&6; } -if ${ac_cv_lib_i386_i386_set_ldt+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for i386_set_ldt in -li386" >&5 +printf %s "checking for i386_set_ldt in -li386... " >&6; } +if test ${ac_cv_lib_i386_i386_set_ldt+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-li386 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -6966,30 +7911,29 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char i386_set_ldt (); int -main () +main (void) { return i386_set_ldt (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_i386_i386_set_ldt=yes -else +else $as_nop ac_cv_lib_i386_i386_set_ldt=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_i386_i386_set_ldt" >&5 -$as_echo "$ac_cv_lib_i386_i386_set_ldt" >&6; } -if test "x$ac_cv_lib_i386_i386_set_ldt" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_i386_i386_set_ldt" >&5 +printf "%s\n" "$ac_cv_lib_i386_i386_set_ldt" >&6; } +if test "x$ac_cv_lib_i386_i386_set_ldt" = xyes +then : I386_LIBS="-li386"
fi @@ -7000,17 +7944,19 @@ OPENGL_LIBS=""
# Check whether --enable-largefile was given. -if test "${enable_largefile+set}" = set; then : +if test ${enable_largefile+y} +then : enableval=$enable_largefile; fi
if test "$enable_largefile" != no; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5 -$as_echo_n "checking for special C compiler options needed for large files... " >&6; } -if ${ac_cv_sys_largefile_CC+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5 +printf %s "checking for special C compiler options needed for large files... " >&6; } +if test ${ac_cv_sys_largefile_CC+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_cv_sys_largefile_CC=no if test "$GCC" != yes; then ac_save_CC=$CC @@ -7024,44 +7970,47 @@ else We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ -#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) +#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int -main () +main (void) {
; return 0; } _ACEOF - if ac_fn_c_try_compile "$LINENO"; then : + if ac_fn_c_try_compile "$LINENO" +then : break fi -rm -f core conftest.err conftest.$ac_objext +rm -f core conftest.err conftest.$ac_objext conftest.beam CC="$CC -n32" - if ac_fn_c_try_compile "$LINENO"; then : + if ac_fn_c_try_compile "$LINENO" +then : ac_cv_sys_largefile_CC=' -n32'; break fi -rm -f core conftest.err conftest.$ac_objext +rm -f core conftest.err conftest.$ac_objext conftest.beam break done CC=$ac_save_CC rm -f conftest.$ac_ext fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5 -$as_echo "$ac_cv_sys_largefile_CC" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5 +printf "%s\n" "$ac_cv_sys_largefile_CC" >&6; } if test "$ac_cv_sys_largefile_CC" != no; then CC=$CC$ac_cv_sys_largefile_CC fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5 -$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } -if ${ac_cv_sys_file_offset_bits+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5 +printf %s "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } +if test ${ac_cv_sys_file_offset_bits+y} +then : + printf %s "(cached) " >&6 +else $as_nop while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -7070,22 +8019,23 @@ else We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ -#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) +#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_sys_file_offset_bits=no; break fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _FILE_OFFSET_BITS 64 @@ -7094,43 +8044,43 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ -#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) +#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_sys_file_offset_bits=64; break fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_sys_file_offset_bits=unknown break done fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5 -$as_echo "$ac_cv_sys_file_offset_bits" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5 +printf "%s\n" "$ac_cv_sys_file_offset_bits" >&6; } case $ac_cv_sys_file_offset_bits in #( no | unknown) ;; *) -cat >>confdefs.h <<_ACEOF -#define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits -_ACEOF +printf "%s\n" "#define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits" >>confdefs.h ;; esac rm -rf conftest* if test $ac_cv_sys_file_offset_bits = unknown; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5 -$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; } -if ${ac_cv_sys_large_files+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5 +printf %s "checking for _LARGE_FILES value needed for large files... " >&6; } +if test ${ac_cv_sys_large_files+y} +then : + printf %s "(cached) " >&6 +else $as_nop while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -7139,22 +8089,23 @@ else We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ -#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) +#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_sys_large_files=no; break fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _LARGE_FILES 1 @@ -7163,559 +8114,1262 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ -#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) +#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_sys_large_files=1; break fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_sys_large_files=unknown break done fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5 -$as_echo "$ac_cv_sys_large_files" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5 +printf "%s\n" "$ac_cv_sys_large_files" >&6; } case $ac_cv_sys_large_files in #( no | unknown) ;; *) -cat >>confdefs.h <<_ACEOF -#define _LARGE_FILES $ac_cv_sys_large_files -_ACEOF +printf "%s\n" "#define _LARGE_FILES $ac_cv_sys_large_files" >>confdefs.h ;; esac rm -rf conftest* fi +fi + + +ac_header= ac_cache= +for ac_item in $ac_header_c_list +do + if test $ac_cache; then + ac_fn_c_check_header_compile "$LINENO" $ac_header ac_cv_header_$ac_cache "$ac_includes_default" + if eval test "x$ac_cv_header_$ac_cache" = xyes; then + printf "%s\n" "#define $ac_item 1" >> confdefs.h + fi + ac_header= ac_cache= + elif test $ac_header; then + ac_cache=$ac_item + else + ac_header=$ac_item + fi +done + + + + + + +
+if test $ac_cv_header_stdlib_h = yes && test $ac_cv_header_string_h = yes +then : + +printf "%s\n" "#define STDC_HEADERS 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "AL/al.h" "ac_cv_header_AL_al_h" "$ac_includes_default" +if test "x$ac_cv_header_AL_al_h" = xyes +then : + printf "%s\n" "#define HAVE_AL_AL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "ApplicationServices/ApplicationServices.h" "ac_cv_header_ApplicationServices_ApplicationServices_h" "$ac_includes_default" +if test "x$ac_cv_header_ApplicationServices_ApplicationServices_h" = xyes +then : + printf "%s\n" "#define HAVE_APPLICATIONSERVICES_APPLICATIONSERVICES_H 1" >>confdefs.h
-ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 -$as_echo_n "checking how to run the C preprocessor... " >&6; } -# On Suns, sometimes $CPP names a directory. -if test -n "$CPP" && test -d "$CPP"; then - CPP= fi -if test -z "$CPP"; then - if ${ac_cv_prog_CPP+:} false; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because CPP needs to be expanded - for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" - do - ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - # <limits.h> exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : +ac_fn_c_check_header_compile "$LINENO" "CL/cl.h" "ac_cv_header_CL_cl_h" "$ac_includes_default" +if test "x$ac_cv_header_CL_cl_h" = xyes +then : + printf "%s\n" "#define HAVE_CL_CL_H 1" >>confdefs.h
-else - # Broken: fails on valid input. -continue fi -rm -f conftest.err conftest.i conftest.$ac_ext +ac_fn_c_check_header_compile "$LINENO" "Carbon/Carbon.h" "ac_cv_header_Carbon_Carbon_h" "$ac_includes_default" +if test "x$ac_cv_header_Carbon_Carbon_h" = xyes +then : + printf "%s\n" "#define HAVE_CARBON_CARBON_H 1" >>confdefs.h
- # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <ac_nonexistent.h> -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break fi -rm -f conftest.err conftest.i conftest.$ac_ext +ac_fn_c_check_header_compile "$LINENO" "CommonCrypto/CommonCryptor.h" "ac_cv_header_CommonCrypto_CommonCryptor_h" "$ac_includes_default" +if test "x$ac_cv_header_CommonCrypto_CommonCryptor_h" = xyes +then : + printf "%s\n" "#define HAVE_COMMONCRYPTO_COMMONCRYPTOR_H 1" >>confdefs.h
-done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break fi +ac_fn_c_check_header_compile "$LINENO" "CoreAudio/CoreAudio.h" "ac_cv_header_CoreAudio_CoreAudio_h" "$ac_includes_default" +if test "x$ac_cv_header_CoreAudio_CoreAudio_h" = xyes +then : + printf "%s\n" "#define HAVE_COREAUDIO_COREAUDIO_H 1" >>confdefs.h
- done - ac_cv_prog_CPP=$CPP +fi +ac_fn_c_check_header_compile "$LINENO" "DiskArbitration/DiskArbitration.h" "ac_cv_header_DiskArbitration_DiskArbitration_h" "$ac_includes_default" +if test "x$ac_cv_header_DiskArbitration_DiskArbitration_h" = xyes +then : + printf "%s\n" "#define HAVE_DISKARBITRATION_DISKARBITRATION_H 1" >>confdefs.h
fi - CPP=$ac_cv_prog_CPP -else - ac_cv_prog_CPP=$CPP +ac_fn_c_check_header_compile "$LINENO" "EGL/egl.h" "ac_cv_header_EGL_egl_h" "$ac_includes_default" +if test "x$ac_cv_header_EGL_egl_h" = xyes +then : + printf "%s\n" "#define HAVE_EGL_EGL_H 1" >>confdefs.h + fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 -$as_echo "$CPP" >&6; } -ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - # <limits.h> exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - Syntax error -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : +ac_fn_c_check_header_compile "$LINENO" "IOKit/IOKitLib.h" "ac_cv_header_IOKit_IOKitLib_h" "$ac_includes_default" +if test "x$ac_cv_header_IOKit_IOKitLib_h" = xyes +then : + printf "%s\n" "#define HAVE_IOKIT_IOKITLIB_H 1" >>confdefs.h
-else - # Broken: fails on valid input. -continue fi -rm -f conftest.err conftest.i conftest.$ac_ext +ac_fn_c_check_header_compile "$LINENO" "IOKit/hid/IOHIDLib.h" "ac_cv_header_IOKit_hid_IOHIDLib_h" "$ac_includes_default" +if test "x$ac_cv_header_IOKit_hid_IOHIDLib_h" = xyes +then : + printf "%s\n" "#define HAVE_IOKIT_HID_IOHIDLIB_H 1" >>confdefs.h
- # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <ac_nonexistent.h> -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break fi -rm -f conftest.err conftest.i conftest.$ac_ext +ac_fn_c_check_header_compile "$LINENO" "OpenAL/al.h" "ac_cv_header_OpenAL_al_h" "$ac_includes_default" +if test "x$ac_cv_header_OpenAL_al_h" = xyes +then : + printf "%s\n" "#define HAVE_OPENAL_AL_H 1" >>confdefs.h
-done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : +fi +ac_fn_c_check_header_compile "$LINENO" "OpenCL/opencl.h" "ac_cv_header_OpenCL_opencl_h" "$ac_includes_default" +if test "x$ac_cv_header_OpenCL_opencl_h" = xyes +then : + printf "%s\n" "#define HAVE_OPENCL_OPENCL_H 1" >>confdefs.h
-else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 -$as_echo "$as_me: error: in `$ac_pwd':" >&2;} -as_fn_error $? "C preprocessor "$CPP" fails sanity check -See `config.log' for more details" "$LINENO" 5; } fi +ac_fn_c_check_header_compile "$LINENO" "QuickTime/ImageCompression.h" "ac_cv_header_QuickTime_ImageCompression_h" "$ac_includes_default" +if test "x$ac_cv_header_QuickTime_ImageCompression_h" = xyes +then : + printf "%s\n" "#define HAVE_QUICKTIME_IMAGECOMPRESSION_H 1" >>confdefs.h
-ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu +fi +ac_fn_c_check_header_compile "$LINENO" "Security/Security.h" "ac_cv_header_Security_Security_h" "$ac_includes_default" +if test "x$ac_cv_header_Security_Security_h" = xyes +then : + printf "%s\n" "#define HAVE_SECURITY_SECURITY_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "SystemConfiguration/SCDynamicStoreCopyDHCPInfo.h" "ac_cv_header_SystemConfiguration_SCDynamicStoreCopyDHCPInfo_h" "$ac_includes_default" +if test "x$ac_cv_header_SystemConfiguration_SCDynamicStoreCopyDHCPInfo_h" = xyes +then : + printf "%s\n" "#define HAVE_SYSTEMCONFIGURATION_SCDYNAMICSTORECOPYDHCPINFO_H 1" >>confdefs.h
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 -$as_echo_n "checking for ANSI C header files... " >&6; } -if ${ac_cv_header_stdc+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <stdlib.h> -#include <stdarg.h> -#include <string.h> -#include <float.h> +fi +ac_fn_c_check_header_compile "$LINENO" "SystemConfiguration/SCNetworkConfiguration.h" "ac_cv_header_SystemConfiguration_SCNetworkConfiguration_h" "$ac_includes_default" +if test "x$ac_cv_header_SystemConfiguration_SCNetworkConfiguration_h" = xyes +then : + printf "%s\n" "#define HAVE_SYSTEMCONFIGURATION_SCNETWORKCONFIGURATION_H 1" >>confdefs.h
-int -main () -{ +fi +ac_fn_c_check_header_compile "$LINENO" "alias.h" "ac_cv_header_alias_h" "$ac_includes_default" +if test "x$ac_cv_header_alias_h" = xyes +then : + printf "%s\n" "#define HAVE_ALIAS_H 1" >>confdefs.h
- ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_stdc=yes -else - ac_cv_header_stdc=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_fn_c_check_header_compile "$LINENO" "arpa/inet.h" "ac_cv_header_arpa_inet_h" "$ac_includes_default" +if test "x$ac_cv_header_arpa_inet_h" = xyes +then : + printf "%s\n" "#define HAVE_ARPA_INET_H 1" >>confdefs.h
-if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <string.h> +fi +ac_fn_c_check_header_compile "$LINENO" "arpa/nameser.h" "ac_cv_header_arpa_nameser_h" "$ac_includes_default" +if test "x$ac_cv_header_arpa_nameser_h" = xyes +then : + printf "%s\n" "#define HAVE_ARPA_NAMESER_H 1" >>confdefs.h
-_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then : +fi +ac_fn_c_check_header_compile "$LINENO" "asm/types.h" "ac_cv_header_asm_types_h" "$ac_includes_default" +if test "x$ac_cv_header_asm_types_h" = xyes +then : + printf "%s\n" "#define HAVE_ASM_TYPES_H 1" >>confdefs.h
-else - ac_cv_header_stdc=no fi -rm -f conftest* +ac_fn_c_check_header_compile "$LINENO" "asm/user.h" "ac_cv_header_asm_user_h" "$ac_includes_default" +if test "x$ac_cv_header_asm_user_h" = xyes +then : + printf "%s\n" "#define HAVE_ASM_USER_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "dirent.h" "ac_cv_header_dirent_h" "$ac_includes_default" +if test "x$ac_cv_header_dirent_h" = xyes +then : + printf "%s\n" "#define HAVE_DIRENT_H 1" >>confdefs.h
-if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <stdlib.h> +fi +ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default" +if test "x$ac_cv_header_dlfcn_h" = xyes +then : + printf "%s\n" "#define HAVE_DLFCN_H 1" >>confdefs.h
-_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then : +fi +ac_fn_c_check_header_compile "$LINENO" "elf.h" "ac_cv_header_elf_h" "$ac_includes_default" +if test "x$ac_cv_header_elf_h" = xyes +then : + printf "%s\n" "#define HAVE_ELF_H 1" >>confdefs.h
-else - ac_cv_header_stdc=no fi -rm -f conftest* +ac_fn_c_check_header_compile "$LINENO" "float.h" "ac_cv_header_float_h" "$ac_includes_default" +if test "x$ac_cv_header_float_h" = xyes +then : + printf "%s\n" "#define HAVE_FLOAT_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "fnmatch.h" "ac_cv_header_fnmatch_h" "$ac_includes_default" +if test "x$ac_cv_header_fnmatch_h" = xyes +then : + printf "%s\n" "#define HAVE_FNMATCH_H 1" >>confdefs.h
-if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then : - : -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <ctype.h> -#include <stdlib.h> -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \ - (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif +fi +ac_fn_c_check_header_compile "$LINENO" "getopt.h" "ac_cv_header_getopt_h" "$ac_includes_default" +if test "x$ac_cv_header_getopt_h" = xyes +then : + printf "%s\n" "#define HAVE_GETOPT_H 1" >>confdefs.h
-#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{ - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - return 2; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : +fi +ac_fn_c_check_header_compile "$LINENO" "gettext-po.h" "ac_cv_header_gettext_po_h" "$ac_includes_default" +if test "x$ac_cv_header_gettext_po_h" = xyes +then : + printf "%s\n" "#define HAVE_GETTEXT_PO_H 1" >>confdefs.h
-else - ac_cv_header_stdc=no fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext +ac_fn_c_check_header_compile "$LINENO" "grp.h" "ac_cv_header_grp_h" "$ac_includes_default" +if test "x$ac_cv_header_grp_h" = xyes +then : + printf "%s\n" "#define HAVE_GRP_H 1" >>confdefs.h + fi +ac_fn_c_check_header_compile "$LINENO" "gsm.h" "ac_cv_header_gsm_h" "$ac_includes_default" +if test "x$ac_cv_header_gsm_h" = xyes +then : + printf "%s\n" "#define HAVE_GSM_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "gsm/gsm.h" "ac_cv_header_gsm_gsm_h" "$ac_includes_default" +if test "x$ac_cv_header_gsm_gsm_h" = xyes +then : + printf "%s\n" "#define HAVE_GSM_GSM_H 1" >>confdefs.h + fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 -$as_echo "$ac_cv_header_stdc" >&6; } -if test $ac_cv_header_stdc = yes; then +ac_fn_c_check_header_compile "$LINENO" "ieeefp.h" "ac_cv_header_ieeefp_h" "$ac_includes_default" +if test "x$ac_cv_header_ieeefp_h" = xyes +then : + printf "%s\n" "#define HAVE_IEEEFP_H 1" >>confdefs.h
-$as_echo "#define STDC_HEADERS 1" >>confdefs.h +fi +ac_fn_c_check_header_compile "$LINENO" "inet/mib2.h" "ac_cv_header_inet_mib2_h" "$ac_includes_default" +if test "x$ac_cv_header_inet_mib2_h" = xyes +then : + printf "%s\n" "#define HAVE_INET_MIB2_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "libproc.h" "ac_cv_header_libproc_h" "$ac_includes_default" +if test "x$ac_cv_header_libproc_h" = xyes +then : + printf "%s\n" "#define HAVE_LIBPROC_H 1" >>confdefs.h
-# On IRIX 5.3, sys/types and inttypes.h are conflicting. -for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ - inttypes.h stdint.h unistd.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default -" -if eval test "x$"$as_ac_Header"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +fi +ac_fn_c_check_header_compile "$LINENO" "link.h" "ac_cv_header_link_h" "$ac_includes_default" +if test "x$ac_cv_header_link_h" = xyes +then : + printf "%s\n" "#define HAVE_LINK_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "linux/cdrom.h" "ac_cv_header_linux_cdrom_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_cdrom_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_CDROM_H 1" >>confdefs.h
-done +fi +ac_fn_c_check_header_compile "$LINENO" "linux/filter.h" "ac_cv_header_linux_filter_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_filter_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_FILTER_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "linux/hdreg.h" "ac_cv_header_linux_hdreg_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_hdreg_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_HDREG_H 1" >>confdefs.h
-for ac_header in \ - AL/al.h \ - ApplicationServices/ApplicationServices.h \ - CL/cl.h \ - Carbon/Carbon.h \ - CommonCrypto/CommonCryptor.h \ - CoreAudio/CoreAudio.h \ - DiskArbitration/DiskArbitration.h \ - EGL/egl.h \ - IOKit/IOKitLib.h \ - IOKit/hid/IOHIDLib.h \ - OpenAL/al.h \ - OpenCL/opencl.h \ - QuickTime/ImageCompression.h \ - Security/Security.h \ - SystemConfiguration/SCDynamicStoreCopyDHCPInfo.h \ - SystemConfiguration/SCNetworkConfiguration.h \ - alias.h \ - arpa/inet.h \ - arpa/nameser.h \ - asm/types.h \ - asm/user.h \ - dirent.h \ - dlfcn.h \ - elf.h \ - float.h \ - fnmatch.h \ - getopt.h \ - gettext-po.h \ - grp.h \ - gsm.h \ - gsm/gsm.h \ - ieeefp.h \ - inet/mib2.h \ - libproc.h \ - link.h \ - linux/cdrom.h \ - linux/filter.h \ - linux/hdreg.h \ - linux/hidraw.h \ - linux/input.h \ - linux/ioctl.h \ - linux/joystick.h \ - linux/major.h \ - linux/param.h \ - linux/serial.h \ - linux/types.h \ - linux/ucdrom.h \ - lwp.h \ - mach-o/loader.h \ - mach/mach.h \ - machine/cpu.h \ - machine/sysarch.h \ - mntent.h \ - netdb.h \ - netinet/in.h \ - netinet/in_systm.h \ - netinet/tcp.h \ - netinet/tcp_fsm.h \ - pcap/pcap.h \ - poll.h \ - port.h \ - pthread.h \ - pwd.h \ - sasl/sasl.h \ - sched.h \ - scsi/scsi.h \ - scsi/scsi_ioctl.h \ - scsi/sg.h \ - stdint.h \ - stropts.h \ - sys/attr.h \ - sys/auxv.h \ - sys/cdio.h \ - sys/epoll.h \ - sys/event.h \ - sys/filio.h \ - sys/ioctl.h \ - sys/ipc.h \ - sys/link.h \ - sys/mman.h \ - sys/modem.h \ - sys/msg.h \ - sys/mtio.h \ - sys/param.h \ - sys/poll.h \ - sys/prctl.h \ - sys/protosw.h \ - sys/ptrace.h \ - sys/queue.h \ - sys/random.h \ - sys/resource.h \ - sys/scsiio.h \ - sys/shm.h \ - sys/signal.h \ - sys/socket.h \ - sys/socketvar.h \ - sys/sockio.h \ - sys/statvfs.h \ - sys/strtio.h \ - sys/syscall.h \ - sys/sysinfo.h \ - sys/tihdr.h \ - sys/time.h \ - sys/timeout.h \ - sys/times.h \ - sys/uio.h \ - sys/user.h \ - sys/utsname.h \ - sys/vnode.h \ - sys/wait.h \ - syscall.h \ - termios.h \ - unistd.h \ - utime.h \ - valgrind/memcheck.h \ - valgrind/valgrind.h +fi +ac_fn_c_check_header_compile "$LINENO" "linux/hidraw.h" "ac_cv_header_linux_hidraw_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_hidraw_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_HIDRAW_H 1" >>confdefs.h
-do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test "x$"$as_ac_Header"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +fi +ac_fn_c_check_header_compile "$LINENO" "linux/input.h" "ac_cv_header_linux_input_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_input_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_INPUT_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "linux/ioctl.h" "ac_cv_header_linux_ioctl_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_ioctl_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_IOCTL_H 1" >>confdefs.h
-done +fi +ac_fn_c_check_header_compile "$LINENO" "linux/joystick.h" "ac_cv_header_linux_joystick_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_joystick_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_JOYSTICK_H 1" >>confdefs.h
-ac_fn_c_check_header_mongrel "$LINENO" "sys/mkdev.h" "ac_cv_header_sys_mkdev_h" "$ac_includes_default" -if test "x$ac_cv_header_sys_mkdev_h" = xyes; then : +fi +ac_fn_c_check_header_compile "$LINENO" "linux/major.h" "ac_cv_header_linux_major_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_major_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_MAJOR_H 1" >>confdefs.h
-$as_echo "#define MAJOR_IN_MKDEV 1" >>confdefs.h +fi +ac_fn_c_check_header_compile "$LINENO" "linux/param.h" "ac_cv_header_linux_param_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_param_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_PARAM_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "linux/serial.h" "ac_cv_header_linux_serial_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_serial_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_SERIAL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "linux/types.h" "ac_cv_header_linux_types_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_types_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_TYPES_H 1" >>confdefs.h
-if test $ac_cv_header_sys_mkdev_h = no; then - ac_fn_c_check_header_mongrel "$LINENO" "sys/sysmacros.h" "ac_cv_header_sys_sysmacros_h" "$ac_includes_default" -if test "x$ac_cv_header_sys_sysmacros_h" = xyes; then : +fi +ac_fn_c_check_header_compile "$LINENO" "linux/ucdrom.h" "ac_cv_header_linux_ucdrom_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_ucdrom_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_UCDROM_H 1" >>confdefs.h
-$as_echo "#define MAJOR_IN_SYSMACROS 1" >>confdefs.h +fi +ac_fn_c_check_header_compile "$LINENO" "lwp.h" "ac_cv_header_lwp_h" "$ac_includes_default" +if test "x$ac_cv_header_lwp_h" = xyes +then : + printf "%s\n" "#define HAVE_LWP_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "mach-o/loader.h" "ac_cv_header_mach_o_loader_h" "$ac_includes_default" +if test "x$ac_cv_header_mach_o_loader_h" = xyes +then : + printf "%s\n" "#define HAVE_MACH_O_LOADER_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "mach/mach.h" "ac_cv_header_mach_mach_h" "$ac_includes_default" +if test "x$ac_cv_header_mach_mach_h" = xyes +then : + printf "%s\n" "#define HAVE_MACH_MACH_H 1" >>confdefs.h
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat file-mode macros are broken" >&5 -$as_echo_n "checking whether stat file-mode macros are broken... " >&6; } -if ${ac_cv_header_stat_broken+:} false; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <sys/types.h> -#include <sys/stat.h> +ac_fn_c_check_header_compile "$LINENO" "machine/cpu.h" "ac_cv_header_machine_cpu_h" "$ac_includes_default" +if test "x$ac_cv_header_machine_cpu_h" = xyes +then : + printf "%s\n" "#define HAVE_MACHINE_CPU_H 1" >>confdefs.h
-#if defined S_ISBLK && defined S_IFDIR -extern char c1[S_ISBLK (S_IFDIR) ? -1 : 1]; -#endif +fi +ac_fn_c_check_header_compile "$LINENO" "machine/sysarch.h" "ac_cv_header_machine_sysarch_h" "$ac_includes_default" +if test "x$ac_cv_header_machine_sysarch_h" = xyes +then : + printf "%s\n" "#define HAVE_MACHINE_SYSARCH_H 1" >>confdefs.h
-#if defined S_ISBLK && defined S_IFCHR -extern char c2[S_ISBLK (S_IFCHR) ? -1 : 1]; -#endif +fi +ac_fn_c_check_header_compile "$LINENO" "mntent.h" "ac_cv_header_mntent_h" "$ac_includes_default" +if test "x$ac_cv_header_mntent_h" = xyes +then : + printf "%s\n" "#define HAVE_MNTENT_H 1" >>confdefs.h
-#if defined S_ISLNK && defined S_IFREG -extern char c3[S_ISLNK (S_IFREG) ? -1 : 1]; -#endif +fi +ac_fn_c_check_header_compile "$LINENO" "netdb.h" "ac_cv_header_netdb_h" "$ac_includes_default" +if test "x$ac_cv_header_netdb_h" = xyes +then : + printf "%s\n" "#define HAVE_NETDB_H 1" >>confdefs.h
-#if defined S_ISSOCK && defined S_IFREG -extern char c4[S_ISSOCK (S_IFREG) ? -1 : 1]; -#endif +fi +ac_fn_c_check_header_compile "$LINENO" "netinet/in.h" "ac_cv_header_netinet_in_h" "$ac_includes_default" +if test "x$ac_cv_header_netinet_in_h" = xyes +then : + printf "%s\n" "#define HAVE_NETINET_IN_H 1" >>confdefs.h
-_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - ac_cv_header_stat_broken=no -else - ac_cv_header_stat_broken=yes fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_fn_c_check_header_compile "$LINENO" "netinet/in_systm.h" "ac_cv_header_netinet_in_systm_h" "$ac_includes_default" +if test "x$ac_cv_header_netinet_in_systm_h" = xyes +then : + printf "%s\n" "#define HAVE_NETINET_IN_SYSTM_H 1" >>confdefs.h + fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stat_broken" >&5 -$as_echo "$ac_cv_header_stat_broken" >&6; } -if test $ac_cv_header_stat_broken = yes; then +ac_fn_c_check_header_compile "$LINENO" "netinet/tcp.h" "ac_cv_header_netinet_tcp_h" "$ac_includes_default" +if test "x$ac_cv_header_netinet_tcp_h" = xyes +then : + printf "%s\n" "#define HAVE_NETINET_TCP_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "netinet/tcp_fsm.h" "ac_cv_header_netinet_tcp_fsm_h" "$ac_includes_default" +if test "x$ac_cv_header_netinet_tcp_fsm_h" = xyes +then : + printf "%s\n" "#define HAVE_NETINET_TCP_FSM_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "pcap/pcap.h" "ac_cv_header_pcap_pcap_h" "$ac_includes_default" +if test "x$ac_cv_header_pcap_pcap_h" = xyes +then : + printf "%s\n" "#define HAVE_PCAP_PCAP_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "poll.h" "ac_cv_header_poll_h" "$ac_includes_default" +if test "x$ac_cv_header_poll_h" = xyes +then : + printf "%s\n" "#define HAVE_POLL_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "port.h" "ac_cv_header_port_h" "$ac_includes_default" +if test "x$ac_cv_header_port_h" = xyes +then : + printf "%s\n" "#define HAVE_PORT_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "pthread.h" "ac_cv_header_pthread_h" "$ac_includes_default" +if test "x$ac_cv_header_pthread_h" = xyes +then : + printf "%s\n" "#define HAVE_PTHREAD_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "pwd.h" "ac_cv_header_pwd_h" "$ac_includes_default" +if test "x$ac_cv_header_pwd_h" = xyes +then : + printf "%s\n" "#define HAVE_PWD_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sasl/sasl.h" "ac_cv_header_sasl_sasl_h" "$ac_includes_default" +if test "x$ac_cv_header_sasl_sasl_h" = xyes +then : + printf "%s\n" "#define HAVE_SASL_SASL_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sched.h" "ac_cv_header_sched_h" "$ac_includes_default" +if test "x$ac_cv_header_sched_h" = xyes +then : + printf "%s\n" "#define HAVE_SCHED_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "scsi/scsi.h" "ac_cv_header_scsi_scsi_h" "$ac_includes_default" +if test "x$ac_cv_header_scsi_scsi_h" = xyes +then : + printf "%s\n" "#define HAVE_SCSI_SCSI_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "scsi/scsi_ioctl.h" "ac_cv_header_scsi_scsi_ioctl_h" "$ac_includes_default" +if test "x$ac_cv_header_scsi_scsi_ioctl_h" = xyes +then : + printf "%s\n" "#define HAVE_SCSI_SCSI_IOCTL_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "scsi/sg.h" "ac_cv_header_scsi_sg_h" "$ac_includes_default" +if test "x$ac_cv_header_scsi_sg_h" = xyes +then : + printf "%s\n" "#define HAVE_SCSI_SG_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "stdint.h" "ac_cv_header_stdint_h" "$ac_includes_default" +if test "x$ac_cv_header_stdint_h" = xyes +then : + printf "%s\n" "#define HAVE_STDINT_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "stropts.h" "ac_cv_header_stropts_h" "$ac_includes_default" +if test "x$ac_cv_header_stropts_h" = xyes +then : + printf "%s\n" "#define HAVE_STROPTS_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/attr.h" "ac_cv_header_sys_attr_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_attr_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_ATTR_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/auxv.h" "ac_cv_header_sys_auxv_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_auxv_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_AUXV_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/cdio.h" "ac_cv_header_sys_cdio_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_cdio_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_CDIO_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/epoll.h" "ac_cv_header_sys_epoll_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_epoll_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_EPOLL_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/event.h" "ac_cv_header_sys_event_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_event_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_EVENT_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/filio.h" "ac_cv_header_sys_filio_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_filio_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_FILIO_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/ioctl.h" "ac_cv_header_sys_ioctl_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_ioctl_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_IOCTL_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/ipc.h" "ac_cv_header_sys_ipc_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_ipc_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_IPC_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/link.h" "ac_cv_header_sys_link_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_link_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_LINK_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/mman.h" "ac_cv_header_sys_mman_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_mman_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_MMAN_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/modem.h" "ac_cv_header_sys_modem_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_modem_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_MODEM_H 1" >>confdefs.h
-$as_echo "#define STAT_MACROS_BROKEN 1" >>confdefs.h +fi +ac_fn_c_check_header_compile "$LINENO" "sys/msg.h" "ac_cv_header_sys_msg_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_msg_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_MSG_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/mtio.h" "ac_cv_header_sys_mtio_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_mtio_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_MTIO_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/param.h" "ac_cv_header_sys_param_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_param_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_PARAM_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/poll.h" "ac_cv_header_sys_poll_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_poll_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_POLL_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/prctl.h" "ac_cv_header_sys_prctl_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_prctl_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_PRCTL_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/protosw.h" "ac_cv_header_sys_protosw_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_protosw_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_PROTOSW_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/ptrace.h" "ac_cv_header_sys_ptrace_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_ptrace_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_PTRACE_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/queue.h" "ac_cv_header_sys_queue_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_queue_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_QUEUE_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/random.h" "ac_cv_header_sys_random_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_random_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_RANDOM_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/resource.h" "ac_cv_header_sys_resource_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_resource_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_RESOURCE_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/scsiio.h" "ac_cv_header_sys_scsiio_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_scsiio_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_SCSIIO_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/shm.h" "ac_cv_header_sys_shm_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_shm_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_SHM_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/signal.h" "ac_cv_header_sys_signal_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_signal_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_SIGNAL_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/socket.h" "ac_cv_header_sys_socket_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_socket_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_SOCKET_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/socketvar.h" "ac_cv_header_sys_socketvar_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_socketvar_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_SOCKETVAR_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/sockio.h" "ac_cv_header_sys_sockio_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_sockio_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_SOCKIO_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/statvfs.h" "ac_cv_header_sys_statvfs_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_statvfs_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_STATVFS_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/strtio.h" "ac_cv_header_sys_strtio_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_strtio_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_STRTIO_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/syscall.h" "ac_cv_header_sys_syscall_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_syscall_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_SYSCALL_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/sysinfo.h" "ac_cv_header_sys_sysinfo_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_sysinfo_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_SYSINFO_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/tihdr.h" "ac_cv_header_sys_tihdr_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_tihdr_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_TIHDR_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/time.h" "ac_cv_header_sys_time_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_time_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_TIME_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/timeout.h" "ac_cv_header_sys_timeout_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_timeout_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_TIMEOUT_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/times.h" "ac_cv_header_sys_times_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_times_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_TIMES_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/uio.h" "ac_cv_header_sys_uio_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_uio_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_UIO_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/user.h" "ac_cv_header_sys_user_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_user_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_USER_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/utsname.h" "ac_cv_header_sys_utsname_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_utsname_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_UTSNAME_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/vnode.h" "ac_cv_header_sys_vnode_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_vnode_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_VNODE_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/wait.h" "ac_cv_header_sys_wait_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_wait_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_WAIT_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "syscall.h" "ac_cv_header_syscall_h" "$ac_includes_default" +if test "x$ac_cv_header_syscall_h" = xyes +then : + printf "%s\n" "#define HAVE_SYSCALL_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "termios.h" "ac_cv_header_termios_h" "$ac_includes_default" +if test "x$ac_cv_header_termios_h" = xyes +then : + printf "%s\n" "#define HAVE_TERMIOS_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "unistd.h" "ac_cv_header_unistd_h" "$ac_includes_default" +if test "x$ac_cv_header_unistd_h" = xyes +then : + printf "%s\n" "#define HAVE_UNISTD_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "utime.h" "ac_cv_header_utime_h" "$ac_includes_default" +if test "x$ac_cv_header_utime_h" = xyes +then : + printf "%s\n" "#define HAVE_UTIME_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "valgrind/memcheck.h" "ac_cv_header_valgrind_memcheck_h" "$ac_includes_default" +if test "x$ac_cv_header_valgrind_memcheck_h" = xyes +then : + printf "%s\n" "#define HAVE_VALGRIND_MEMCHECK_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "valgrind/valgrind.h" "ac_cv_header_valgrind_valgrind_h" "$ac_includes_default" +if test "x$ac_cv_header_valgrind_valgrind_h" = xyes +then : + printf "%s\n" "#define HAVE_VALGRIND_VALGRIND_H 1" >>confdefs.h + +fi + +ac_fn_c_check_header_compile "$LINENO" "sys/mkdev.h" "ac_cv_header_sys_mkdev_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_mkdev_h" = xyes +then : + +printf "%s\n" "#define MAJOR_IN_MKDEV 1" >>confdefs.h + +fi + +if test $ac_cv_header_sys_mkdev_h = no; then + ac_fn_c_check_header_compile "$LINENO" "sys/sysmacros.h" "ac_cv_header_sys_sysmacros_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_sysmacros_h" = xyes +then : + +printf "%s\n" "#define MAJOR_IN_SYSMACROS 1" >>confdefs.h + +fi + +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether stat file-mode macros are broken" >&5 +printf %s "checking whether stat file-mode macros are broken... " >&6; } +if test ${ac_cv_header_stat_broken+y} +then : + printf %s "(cached) " >&6 +else $as_nop + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <sys/types.h> +#include <sys/stat.h> + +#if defined S_ISBLK && defined S_IFDIR +extern char c1[S_ISBLK (S_IFDIR) ? -1 : 1]; +#endif + +#if defined S_ISBLK && defined S_IFCHR +extern char c2[S_ISBLK (S_IFCHR) ? -1 : 1]; +#endif + +#if defined S_ISLNK && defined S_IFREG +extern char c3[S_ISLNK (S_IFREG) ? -1 : 1]; +#endif + +#if defined S_ISSOCK && defined S_IFREG +extern char c4[S_ISSOCK (S_IFREG) ? -1 : 1]; +#endif + +_ACEOF +if ac_fn_c_try_compile "$LINENO" +then : + ac_cv_header_stat_broken=no +else $as_nop + ac_cv_header_stat_broken=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stat_broken" >&5 +printf "%s\n" "$ac_cv_header_stat_broken" >&6; } +if test $ac_cv_header_stat_broken = yes; then + +printf "%s\n" "#define STAT_MACROS_BROKEN 1" >>confdefs.h + +fi + + + +ac_fn_c_check_header_compile "$LINENO" "sys/conf.h" "ac_cv_header_sys_conf_h" "#include <sys/types.h> + #ifdef HAVE_SYS_PARAM_H + # include <sys/param.h> + #endif +" +if test "x$ac_cv_header_sys_conf_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_CONF_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/mount.h" "ac_cv_header_sys_mount_h" "#include <sys/types.h> + #ifdef HAVE_SYS_PARAM_H + # include <sys/param.h> + #endif +" +if test "x$ac_cv_header_sys_mount_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_MOUNT_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/statfs.h" "ac_cv_header_sys_statfs_h" "#include <sys/types.h> + #ifdef HAVE_SYS_PARAM_H + # include <sys/param.h> + #endif +" +if test "x$ac_cv_header_sys_statfs_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_STATFS_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/user.h" "ac_cv_header_sys_user_h" "#include <sys/types.h> + #ifdef HAVE_SYS_PARAM_H + # include <sys/param.h> + #endif +" +if test "x$ac_cv_header_sys_user_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_USER_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "sys/vfs.h" "ac_cv_header_sys_vfs_h" "#include <sys/types.h> + #ifdef HAVE_SYS_PARAM_H + # include <sys/param.h> + #endif +" +if test "x$ac_cv_header_sys_vfs_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_VFS_H 1" >>confdefs.h + +fi + + +saved_sysctl_h_CFLAGS=$CFLAGS +test "x${GCC}" != xyes || CFLAGS="$CFLAGS -Werror" +ac_fn_c_check_header_compile "$LINENO" "sys/sysctl.h" "ac_cv_header_sys_sysctl_h" "#include <sys/types.h> + #ifdef HAVE_SYS_PARAM_H + # include <sys/param.h> + #endif +" +if test "x$ac_cv_header_sys_sysctl_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_SYSCTL_H 1" >>confdefs.h + +fi + +CFLAGS=$saved_sysctl_h_CFLAGS + +ac_fn_c_check_header_compile "$LINENO" "netinet/ip.h" "ac_cv_header_netinet_ip_h" "#include <sys/types.h> + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_NET_ROUTE_H + # include <net/route.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NET_IF_H + # include <net/if.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> + #endif +" +if test "x$ac_cv_header_netinet_ip_h" = xyes +then : + printf "%s\n" "#define HAVE_NETINET_IP_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "net/if.h" "ac_cv_header_net_if_h" "#include <sys/types.h> + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_NET_ROUTE_H + # include <net/route.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NET_IF_H + # include <net/if.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> + #endif +" +if test "x$ac_cv_header_net_if_h" = xyes +then : + printf "%s\n" "#define HAVE_NET_IF_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "net/if_arp.h" "ac_cv_header_net_if_arp_h" "#include <sys/types.h> + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_NET_ROUTE_H + # include <net/route.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NET_IF_H + # include <net/if.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> + #endif +" +if test "x$ac_cv_header_net_if_arp_h" = xyes +then : + printf "%s\n" "#define HAVE_NET_IF_ARP_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "net/if_dl.h" "ac_cv_header_net_if_dl_h" "#include <sys/types.h> + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_NET_ROUTE_H + # include <net/route.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NET_IF_H + # include <net/if.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> + #endif +" +if test "x$ac_cv_header_net_if_dl_h" = xyes +then : + printf "%s\n" "#define HAVE_NET_IF_DL_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "net/if_types.h" "ac_cv_header_net_if_types_h" "#include <sys/types.h> + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_NET_ROUTE_H + # include <net/route.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NET_IF_H + # include <net/if.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> + #endif +" +if test "x$ac_cv_header_net_if_types_h" = xyes +then : + printf "%s\n" "#define HAVE_NET_IF_TYPES_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "net/route.h" "ac_cv_header_net_route_h" "#include <sys/types.h> + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_NET_ROUTE_H + # include <net/route.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NET_IF_H + # include <net/if.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> + #endif +" +if test "x$ac_cv_header_net_route_h" = xyes +then : + printf "%s\n" "#define HAVE_NET_ROUTE_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "netinet/if_ether.h" "ac_cv_header_netinet_if_ether_h" "#include <sys/types.h> + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_NET_ROUTE_H + # include <net/route.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NET_IF_H + # include <net/if.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> + #endif +" +if test "x$ac_cv_header_netinet_if_ether_h" = xyes +then : + printf "%s\n" "#define HAVE_NETINET_IF_ETHER_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "netinet/if_inarp.h" "ac_cv_header_netinet_if_inarp_h" "#include <sys/types.h> + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_NET_ROUTE_H + # include <net/route.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NET_IF_H + # include <net/if.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> + #endif +" +if test "x$ac_cv_header_netinet_if_inarp_h" = xyes +then : + printf "%s\n" "#define HAVE_NETINET_IF_INARP_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "netinet/in_pcb.h" "ac_cv_header_netinet_in_pcb_h" "#include <sys/types.h> + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_NET_ROUTE_H + # include <net/route.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NET_IF_H + # include <net/if.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> + #endif +" +if test "x$ac_cv_header_netinet_in_pcb_h" = xyes +then : + printf "%s\n" "#define HAVE_NETINET_IN_PCB_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "netinet/ip_icmp.h" "ac_cv_header_netinet_ip_icmp_h" "#include <sys/types.h> + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_NET_ROUTE_H + # include <net/route.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NET_IF_H + # include <net/if.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> + #endif +" +if test "x$ac_cv_header_netinet_ip_icmp_h" = xyes +then : + printf "%s\n" "#define HAVE_NETINET_IP_ICMP_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "netinet/ip_var.h" "ac_cv_header_netinet_ip_var_h" "#include <sys/types.h> + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_NET_ROUTE_H + # include <net/route.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NET_IF_H + # include <net/if.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> + #endif +" +if test "x$ac_cv_header_netinet_ip_var_h" = xyes +then : + printf "%s\n" "#define HAVE_NETINET_IP_VAR_H 1" >>confdefs.h
fi - - - -for ac_header in sys/conf.h sys/mount.h sys/statfs.h sys/user.h sys/vfs.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#include <sys/types.h> - #ifdef HAVE_SYS_PARAM_H - # include <sys/param.h> +ac_fn_c_check_header_compile "$LINENO" "netinet/udp.h" "ac_cv_header_netinet_udp_h" "#include <sys/types.h> + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_NET_ROUTE_H + # include <net/route.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NET_IF_H + # include <net/if.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> #endif " -if eval test "x$"$as_ac_Header"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +if test "x$ac_cv_header_netinet_udp_h" = xyes +then : + printf "%s\n" "#define HAVE_NETINET_UDP_H 1" >>confdefs.h
fi - -done - - -saved_sysctl_h_CFLAGS=$CFLAGS -test "x${GCC}" != xyes || CFLAGS="$CFLAGS -Werror" -for ac_header in sys/sysctl.h -do : - ac_fn_c_check_header_compile "$LINENO" "sys/sysctl.h" "ac_cv_header_sys_sysctl_h" "#include <sys/types.h> - #ifdef HAVE_SYS_PARAM_H - # include <sys/param.h> +ac_fn_c_check_header_compile "$LINENO" "netipx/ipx.h" "ac_cv_header_netipx_ipx_h" "#include <sys/types.h> + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_NET_ROUTE_H + # include <net/route.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NET_IF_H + # include <net/if.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> #endif " -if test "x$ac_cv_header_sys_sysctl_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_SYS_SYSCTL_H 1 -_ACEOF +if test "x$ac_cv_header_netipx_ipx_h" = xyes +then : + printf "%s\n" "#define HAVE_NETIPX_IPX_H 1" >>confdefs.h
fi - -done - -CFLAGS=$saved_sysctl_h_CFLAGS - -for ac_header in \ - netinet/ip.h \ - net/if.h \ - net/if_arp.h \ - net/if_dl.h \ - net/if_types.h \ - net/route.h \ - netinet/if_ether.h \ - netinet/if_inarp.h \ - netinet/in_pcb.h \ - netinet/ip_icmp.h \ - netinet/ip_var.h \ - netinet/udp.h \ - netipx/ipx.h \ - sys/un.h \ - -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#include <sys/types.h> +ac_fn_c_check_header_compile "$LINENO" "sys/un.h" "ac_cv_header_sys_un_h" "#include <sys/types.h> #ifdef HAVE_SYS_SOCKET_H # include <sys/socket.h> #endif @@ -7738,20 +9392,57 @@ ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#include <s # include <netinet/ip.h> #endif " -if eval test "x$"$as_ac_Header"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +if test "x$ac_cv_header_sys_un_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_UN_H 1" >>confdefs.h
fi
-done
+ac_fn_c_check_header_compile "$LINENO" "netinet/tcp_timer.h" "ac_cv_header_netinet_tcp_timer_h" "#include <sys/types.h> + #ifdef HAVE_ALIAS_H + # include <alias.h> + #endif + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_SYS_TIMEOUT_H + # include <sys/timeout.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> + #endif + #ifdef HAVE_NETINET_IP_VAR_H + # include <netinet/ip_var.h> + #endif + #ifdef HAVE_NETINET_IP_ICMP_H + # include <netinet/ip_icmp.h> + #endif + #ifdef HAVE_NETINET_UDP_H + # include <netinet/udp.h> + #endif + #ifdef HAVE_NETINET_TCP_H + # include <netinet/tcp.h> + #endif + #ifdef HAVE_NETINET_TCP_TIMER_H + #include <netinet/tcp_timer.h> + #endif +" +if test "x$ac_cv_header_netinet_tcp_timer_h" = xyes +then : + printf "%s\n" "#define HAVE_NETINET_TCP_TIMER_H 1" >>confdefs.h
-for ac_header in netinet/tcp_timer.h netinet/udp_var.h netinet/icmp_var.h netinet/tcp_var.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#include <sys/types.h> +fi +ac_fn_c_check_header_compile "$LINENO" "netinet/udp_var.h" "ac_cv_header_netinet_udp_var_h" "#include <sys/types.h> #ifdef HAVE_ALIAS_H # include <alias.h> #endif @@ -7789,20 +9480,100 @@ ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#include <s #include <netinet/tcp_timer.h> #endif " -if eval test "x$"$as_ac_Header"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +if test "x$ac_cv_header_netinet_udp_var_h" = xyes +then : + printf "%s\n" "#define HAVE_NETINET_UDP_VAR_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "netinet/icmp_var.h" "ac_cv_header_netinet_icmp_var_h" "#include <sys/types.h> + #ifdef HAVE_ALIAS_H + # include <alias.h> + #endif + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_SYS_TIMEOUT_H + # include <sys/timeout.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> + #endif + #ifdef HAVE_NETINET_IP_VAR_H + # include <netinet/ip_var.h> + #endif + #ifdef HAVE_NETINET_IP_ICMP_H + # include <netinet/ip_icmp.h> + #endif + #ifdef HAVE_NETINET_UDP_H + # include <netinet/udp.h> + #endif + #ifdef HAVE_NETINET_TCP_H + # include <netinet/tcp.h> + #endif + #ifdef HAVE_NETINET_TCP_TIMER_H + #include <netinet/tcp_timer.h> + #endif +" +if test "x$ac_cv_header_netinet_icmp_var_h" = xyes +then : + printf "%s\n" "#define HAVE_NETINET_ICMP_VAR_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "netinet/tcp_var.h" "ac_cv_header_netinet_tcp_var_h" "#include <sys/types.h> + #ifdef HAVE_ALIAS_H + # include <alias.h> + #endif + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_SYS_SOCKETVAR_H + # include <sys/socketvar.h> + #endif + #ifdef HAVE_SYS_TIMEOUT_H + # include <sys/timeout.h> + #endif + #ifdef HAVE_NETINET_IN_H + # include <netinet/in.h> + #endif + #ifdef HAVE_NETINET_IN_SYSTM_H + # include <netinet/in_systm.h> + #endif + #ifdef HAVE_NETINET_IP_H + # include <netinet/ip.h> + #endif + #ifdef HAVE_NETINET_IP_VAR_H + # include <netinet/ip_var.h> + #endif + #ifdef HAVE_NETINET_IP_ICMP_H + # include <netinet/ip_icmp.h> + #endif + #ifdef HAVE_NETINET_UDP_H + # include <netinet/udp.h> + #endif + #ifdef HAVE_NETINET_TCP_H + # include <netinet/tcp.h> + #endif + #ifdef HAVE_NETINET_TCP_TIMER_H + #include <netinet/tcp_timer.h> + #endif +" +if test "x$ac_cv_header_netinet_tcp_var_h" = xyes +then : + printf "%s\n" "#define HAVE_NETINET_TCP_VAR_H 1" >>confdefs.h
-done +fi
-for ac_header in linux/ipx.h linux/irda.h linux/rtnetlink.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#include <sys/types.h> +ac_fn_c_check_header_compile "$LINENO" "linux/ipx.h" "ac_cv_header_linux_ipx_h" "#include <sys/types.h> #ifdef HAVE_ASM_TYPES_H # include <asm/types.h> #endif @@ -7813,19 +9584,46 @@ ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#include <s # include <linux/types.h> #endif " -if eval test "x$"$as_ac_Header"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +if test "x$ac_cv_header_linux_ipx_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_IPX_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "linux/irda.h" "ac_cv_header_linux_irda_h" "#include <sys/types.h> + #ifdef HAVE_ASM_TYPES_H + # include <asm/types.h> + #endif + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_LINUX_TYPES_H + # include <linux/types.h> + #endif +" +if test "x$ac_cv_header_linux_irda_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_IRDA_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "linux/rtnetlink.h" "ac_cv_header_linux_rtnetlink_h" "#include <sys/types.h> + #ifdef HAVE_ASM_TYPES_H + # include <asm/types.h> + #endif + #ifdef HAVE_SYS_SOCKET_H + # include <sys/socket.h> + #endif + #ifdef HAVE_LINUX_TYPES_H + # include <linux/types.h> + #endif +" +if test "x$ac_cv_header_linux_rtnetlink_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_RTNETLINK_H 1" >>confdefs.h
-done +fi
-for ac_header in resolv.h -do : - ac_fn_c_check_header_compile "$LINENO" "resolv.h" "ac_cv_header_resolv_h" "#include <sys/types.h> +ac_fn_c_check_header_compile "$LINENO" "resolv.h" "ac_cv_header_resolv_h" "#include <sys/types.h> #ifdef HAVE_SYS_SOCKET_H # include <sys/socket.h> #endif @@ -7836,80 +9634,55 @@ do : # include <arpa/nameser.h> #endif " -if test "x$ac_cv_header_resolv_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_RESOLV_H 1 -_ACEOF +if test "x$ac_cv_header_resolv_h" = xyes +then : + printf "%s\n" "#define HAVE_RESOLV_H 1" >>confdefs.h
fi
-done -
-for ac_header in ifaddrs.h -do : - ac_fn_c_check_header_compile "$LINENO" "ifaddrs.h" "ac_cv_header_ifaddrs_h" "#include <sys/types.h> +ac_fn_c_check_header_compile "$LINENO" "ifaddrs.h" "ac_cv_header_ifaddrs_h" "#include <sys/types.h> " -if test "x$ac_cv_header_ifaddrs_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_IFADDRS_H 1 -_ACEOF +if test "x$ac_cv_header_ifaddrs_h" = xyes +then : + printf "%s\n" "#define HAVE_IFADDRS_H 1" >>confdefs.h
fi
-done -
-for ac_header in sys/ucontext.h -do : - ac_fn_c_check_header_compile "$LINENO" "sys/ucontext.h" "ac_cv_header_sys_ucontext_h" "#include <signal.h> +ac_fn_c_check_header_compile "$LINENO" "sys/ucontext.h" "ac_cv_header_sys_ucontext_h" "#include <signal.h> " -if test "x$ac_cv_header_sys_ucontext_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_SYS_UCONTEXT_H 1 -_ACEOF +if test "x$ac_cv_header_sys_ucontext_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_UCONTEXT_H 1" >>confdefs.h
fi
-done -
-for ac_header in sys/thr.h -do : - ac_fn_c_check_header_compile "$LINENO" "sys/thr.h" "ac_cv_header_sys_thr_h" "#include <sys/types.h> +ac_fn_c_check_header_compile "$LINENO" "sys/thr.h" "ac_cv_header_sys_thr_h" "#include <sys/types.h> #ifdef HAVE_SYS_UCONTEXT_H #include <sys/ucontext.h> #endif " -if test "x$ac_cv_header_sys_thr_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_SYS_THR_H 1 -_ACEOF +if test "x$ac_cv_header_sys_thr_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_THR_H 1" >>confdefs.h
fi
-done -
-for ac_header in pthread_np.h -do : - ac_fn_c_check_header_compile "$LINENO" "pthread_np.h" "ac_cv_header_pthread_np_h" "#ifdef HAVE_PTHREAD_H +ac_fn_c_check_header_compile "$LINENO" "pthread_np.h" "ac_cv_header_pthread_np_h" "#ifdef HAVE_PTHREAD_H #include <pthread.h> #endif " -if test "x$ac_cv_header_pthread_np_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_PTHREAD_NP_H 1 -_ACEOF +if test "x$ac_cv_header_pthread_np_h" = xyes +then : + printf "%s\n" "#define HAVE_PTHREAD_NP_H 1" >>confdefs.h
fi
-done -
-for ac_header in linux/videodev2.h -do : - ac_fn_c_check_header_compile "$LINENO" "linux/videodev2.h" "ac_cv_header_linux_videodev2_h" "#ifdef HAVE_SYS_TIME_H +ac_fn_c_check_header_compile "$LINENO" "linux/videodev2.h" "ac_cv_header_linux_videodev2_h" "#ifdef HAVE_SYS_TIME_H #include <sys/time.h> #endif #include <sys/types.h> @@ -7917,19 +9690,14 @@ do : #include <asm/types.h> #endif " -if test "x$ac_cv_header_linux_videodev2_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_LINUX_VIDEODEV2_H 1 -_ACEOF +if test "x$ac_cv_header_linux_videodev2_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_VIDEODEV2_H 1" >>confdefs.h
fi
-done -
-for ac_header in libprocstat.h -do : - ac_fn_c_check_header_compile "$LINENO" "libprocstat.h" "ac_cv_header_libprocstat_h" "#ifdef HAVE_SYS_PARAM_H +ac_fn_c_check_header_compile "$LINENO" "libprocstat.h" "ac_cv_header_libprocstat_h" "#ifdef HAVE_SYS_PARAM_H #include <sys/param.h> #endif #ifdef HAVE_SYS_QUEUE_H @@ -7939,15 +9707,12 @@ do : #include <sys/socket.h> #endif " -if test "x$ac_cv_header_libprocstat_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_LIBPROCSTAT_H 1 -_ACEOF +if test "x$ac_cv_header_libprocstat_h" = xyes +then : + printf "%s\n" "#define HAVE_LIBPROCSTAT_H 1" >>confdefs.h
fi
-done -
DLLFLAGS="-D_REENTRANT" @@ -7968,11 +9733,12 @@ LIBEXT="so" DLLEXT=".so" # Extract the first word of "ldd", so it can be a program name with args. set dummy ldd; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_LDD+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_path_LDD+y} +then : + printf %s "(cached) " >&6 +else $as_nop case $LDD in [\/]* | ?:[\/]*) ac_cv_path_LDD="$LDD" # Let the user override the test with a path. @@ -7983,11 +9749,15 @@ as_dummy="/sbin:/usr/sbin:$PATH" for as_dir in $as_dummy do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_LDD="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then + ac_cv_path_LDD="$as_dir$ac_word$ac_exec_ext" + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -8000,22 +9770,23 @@ esac fi LDD=$ac_cv_path_LDD if test -n "$LDD"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LDD" >&5 -$as_echo "$LDD" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LDD" >&5 +printf "%s\n" "$LDD" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_OTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_OTOOL+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. else @@ -8023,11 +9794,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -8038,11 +9813,11 @@ fi fi OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 -$as_echo "$OTOOL" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 +printf "%s\n" "$OTOOL" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -8051,11 +9826,12 @@ if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_OTOOL+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. else @@ -8063,11 +9839,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -8078,11 +9858,11 @@ fi fi ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 -$as_echo "$ac_ct_OTOOL" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 +printf "%s\n" "$ac_ct_OTOOL" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_OTOOL" = x; then @@ -8090,8 +9870,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL=$ac_ct_OTOOL @@ -8103,11 +9883,12 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}readelf", so it can be a program name with args. set dummy ${ac_tool_prefix}readelf; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_READELF+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_READELF+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$READELF"; then ac_cv_prog_READELF="$READELF" # Let the user override the test. else @@ -8115,11 +9896,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_READELF="${ac_tool_prefix}readelf" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -8130,11 +9915,11 @@ fi fi READELF=$ac_cv_prog_READELF if test -n "$READELF"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $READELF" >&5 -$as_echo "$READELF" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $READELF" >&5 +printf "%s\n" "$READELF" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -8143,11 +9928,12 @@ if test -z "$ac_cv_prog_READELF"; then ac_ct_READELF=$READELF # Extract the first word of "readelf", so it can be a program name with args. set dummy readelf; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_READELF+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_READELF+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$ac_ct_READELF"; then ac_cv_prog_ac_ct_READELF="$ac_ct_READELF" # Let the user override the test. else @@ -8155,11 +9941,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_READELF="readelf" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -8170,11 +9960,11 @@ fi fi ac_ct_READELF=$ac_cv_prog_ac_ct_READELF if test -n "$ac_ct_READELF"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_READELF" >&5 -$as_echo "$ac_ct_READELF" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_READELF" >&5 +printf "%s\n" "$ac_ct_READELF" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_READELF" = x; then @@ -8182,8 +9972,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac READELF=$ac_ct_READELF @@ -8208,13 +9998,14 @@ wine_fn_append_file ()
wine_fn_append_rule () { - $as_echo "$1" >>$wine_rules_file + printf "%s\n" "$1" >>$wine_rules_file }
wine_fn_config_makefile () { wine_fn_append_file SUBDIRS $1 - if eval test "x$"$2"" = x"no"; then : + if eval test "x$"$2"" = x"no" +then : wine_fn_append_file DISABLED_SUBDIRS $1 fi } @@ -8239,11 +10030,12 @@ case $host_os in if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_DLLTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_DLLTOOL+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. else @@ -8251,11 +10043,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -8266,11 +10062,11 @@ fi fi DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 -$as_echo "$DLLTOOL" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 +printf "%s\n" "$DLLTOOL" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -8279,11 +10075,12 @@ if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_DLLTOOL+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. else @@ -8291,11 +10088,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -8306,11 +10107,11 @@ fi fi ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 -$as_echo "$ac_ct_DLLTOOL" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 +printf "%s\n" "$ac_ct_DLLTOOL" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_DLLTOOL" = x; then @@ -8318,8 +10119,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DLLTOOL=$ac_ct_DLLTOOL @@ -8331,29 +10132,32 @@ fi LIBEXT="dll" DLLEXT="" case $host_cpu in - *i[3456]86*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--disable-stdcall-fixup" >&5 -$as_echo_n "checking whether the compiler supports -Wl,--disable-stdcall-fixup... " >&6; } -if ${ac_cv_cflags__Wl___disable_stdcall_fixup+:} false; then : - $as_echo_n "(cached) " >&6 -else + *i[3456]86*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--disable-stdcall-fixup" >&5 +printf %s "checking whether the compiler supports -Wl,--disable-stdcall-fixup... " >&6; } +if test ${ac_cv_cflags__Wl___disable_stdcall_fixup+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,--disable-stdcall-fixup" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl___disable_stdcall_fixup=yes -else +else $as_nop ac_cv_cflags__Wl___disable_stdcall_fixup=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___disable_stdcall_fixup" >&5 -$as_echo "$ac_cv_cflags__Wl___disable_stdcall_fixup" >&6; } -if test "x$ac_cv_cflags__Wl___disable_stdcall_fixup" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___disable_stdcall_fixup" >&5 +printf "%s\n" "$ac_cv_cflags__Wl___disable_stdcall_fixup" >&6; } +if test "x$ac_cv_cflags__Wl___disable_stdcall_fixup" = xyes +then : LDDLLFLAGS="-Wl,--disable-stdcall-fixup" fi ;; esac @@ -8379,15 +10183,16 @@ ac_compile='$OBJC -c $OBJCFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$OBJC -o conftest$ac_exeext $OBJCFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_objc_compiler_gnu if test -n "$ac_tool_prefix"; then - for ac_prog in gcc objcc objc cc CC + for ac_prog in gcc objcc objc cc CC clang do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_OBJC+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_OBJC+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$OBJC"; then ac_cv_prog_OBJC="$OBJC" # Let the user override the test. else @@ -8395,11 +10200,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_OBJC="$ac_tool_prefix$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -8410,11 +10219,11 @@ fi fi OBJC=$ac_cv_prog_OBJC if test -n "$OBJC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJC" >&5 -$as_echo "$OBJC" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $OBJC" >&5 +printf "%s\n" "$OBJC" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -8423,15 +10232,16 @@ fi fi if test -z "$OBJC"; then ac_ct_OBJC=$OBJC - for ac_prog in gcc objcc objc cc CC + for ac_prog in gcc objcc objc cc CC clang do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_OBJC+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_OBJC+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$ac_ct_OBJC"; then ac_cv_prog_ac_ct_OBJC="$ac_ct_OBJC" # Let the user override the test. else @@ -8439,11 +10249,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -8454,11 +10268,11 @@ fi fi ac_ct_OBJC=$ac_cv_prog_ac_ct_OBJC if test -n "$ac_ct_OBJC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJC" >&5 -$as_echo "$ac_ct_OBJC" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJC" >&5 +printf "%s\n" "$ac_ct_OBJC" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -8470,8 +10284,8 @@ done else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OBJC=$ac_ct_OBJC @@ -8479,7 +10293,7 @@ esac fi
# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for Objective C compiler version" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for Objective C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do @@ -8489,7 +10303,7 @@ case "(($ac_try" in *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then @@ -8499,20 +10313,21 @@ $as_echo "$ac_try_echo"; } >&5 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err - $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; } done
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Objective C compiler" >&5 -$as_echo_n "checking whether we are using the GNU Objective C compiler... " >&6; } -if ${ac_cv_objc_compiler_gnu+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU Objective C" >&5 +printf %s "checking whether the compiler supports GNU Objective C... " >&6; } +if test ${ac_cv_objc_compiler_gnu+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) { #ifndef __GNUC__ choke me @@ -8522,29 +10337,33 @@ main () return 0; } _ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : +if ac_fn_objc_try_compile "$LINENO" +then : ac_compiler_gnu=yes -else +else $as_nop ac_compiler_gnu=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_objc_compiler_gnu=$ac_compiler_gnu
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objc_compiler_gnu" >&5 -$as_echo "$ac_cv_objc_compiler_gnu" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objc_compiler_gnu" >&5 +printf "%s\n" "$ac_cv_objc_compiler_gnu" >&6; } +ac_compiler_gnu=$ac_cv_objc_compiler_gnu + if test $ac_compiler_gnu = yes; then GOBJC=yes else GOBJC= fi -ac_test_OBJCFLAGS=${OBJCFLAGS+set} +ac_test_OBJCFLAGS=${OBJCFLAGS+y} ac_save_OBJCFLAGS=$OBJCFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $OBJC accepts -g" >&5 -$as_echo_n "checking whether $OBJC accepts -g... " >&6; } -if ${ac_cv_prog_objc_g+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $OBJC accepts -g" >&5 +printf %s "checking whether $OBJC accepts -g... " >&6; } +if test ${ac_cv_prog_objc_g+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_save_objc_werror_flag=$ac_objc_werror_flag ac_objc_werror_flag=yes ac_cv_prog_objc_g=no @@ -8553,57 +10372,60 @@ else /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : +if ac_fn_objc_try_compile "$LINENO" +then : ac_cv_prog_objc_g=yes -else +else $as_nop OBJCFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : +if ac_fn_objc_try_compile "$LINENO" +then :
-else +else $as_nop ac_objc_werror_flag=$ac_save_objc_werror_flag OBJCFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : +if ac_fn_objc_try_compile "$LINENO" +then : ac_cv_prog_objc_g=yes fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_objc_werror_flag=$ac_save_objc_werror_flag fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_objc_g" >&5 -$as_echo "$ac_cv_prog_objc_g" >&6; } -if test "$ac_test_OBJCFLAGS" = set; then +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_objc_g" >&5 +printf "%s\n" "$ac_cv_prog_objc_g" >&6; } +if test $ac_test_OBJCFLAGS; then OBJCFLAGS=$ac_save_OBJCFLAGS elif test $ac_cv_prog_objc_g = yes; then if test "$GOBJC" = yes; then @@ -8625,152 +10447,13 @@ ac_link='$OBJC -o conftest$ac_exeext $OBJCFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ ac_compiler_gnu=$ac_cv_objc_compiler_gnu
-ac_ext=m -ac_cpp='$OBJCPP $CPPFLAGS' -ac_compile='$OBJC -c $OBJCFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$OBJC -o conftest$ac_exeext $OBJCFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_objc_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the Objective C preprocessor" >&5 -$as_echo_n "checking how to run the Objective C preprocessor... " >&6; } -if test -z "$OBJCPP"; then - if ${ac_cv_prog_OBJCPP+:} false; then : - $as_echo_n "(cached) " >&6 -else - # Double quotes because OBJCPP needs to be expanded - for OBJCPP in "$OBJC -E" "/lib/cpp" - do - ac_preproc_ok=false -for ac_objc_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - # <limits.h> exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - Syntax error -_ACEOF -if ac_fn_objc_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <ac_nonexistent.h> -_ACEOF -if ac_fn_objc_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - break -fi - - done - ac_cv_prog_OBJCPP=$OBJCPP - -fi - OBJCPP=$ac_cv_prog_OBJCPP -else - ac_cv_prog_OBJCPP=$OBJCPP -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJCPP" >&5 -$as_echo "$OBJCPP" >&6; } -ac_preproc_ok=false -for ac_objc_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since - # <limits.h> exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif - Syntax error -_ACEOF -if ac_fn_objc_try_cpp "$LINENO"; then : - -else - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext - - # OK, works on sane cases. Now check whether nonexistent headers - # can be detected and how. - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <ac_nonexistent.h> -_ACEOF -if ac_fn_objc_try_cpp "$LINENO"; then : - # Broken: success on invalid input. -continue -else - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : - -else - { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 -$as_echo "$as_me: error: in `$ac_pwd':" >&2;} -as_fn_error $? "Objective C preprocessor "$OBJCPP" fails sanity check -See `config.log' for more details" "$LINENO" 5; } -fi - -ac_ext=m -ac_cpp='$OBJCPP $CPPFLAGS' -ac_compile='$OBJC -c $OBJCFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$OBJC -o conftest$ac_exeext $OBJCFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_objc_compiler_gnu - - -for ac_header in Metal/Metal.h -do : - ac_fn_objc_check_header_mongrel "$LINENO" "Metal/Metal.h" "ac_cv_header_Metal_Metal_h" "$ac_includes_default" -if test "x$ac_cv_header_Metal_Metal_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_METAL_METAL_H 1 -_ACEOF +ac_fn_objc_check_header_compile "$LINENO" "Metal/Metal.h" "ac_cv_header_Metal_Metal_h" "$ac_includes_default" +if test "x$ac_cv_header_Metal_Metal_h" = xyes +then : + printf "%s\n" "#define HAVE_METAL_METAL_H 1" >>confdefs.h
fi
-done - ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -8799,163 +10482,181 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
wine_can_build_preloader=yes WINEPRELOADER_LDFLAGS="-nostartfiles -nodefaultlibs -e _start -ldylib1.o -Wl,-image_base,0x7d400000,-segalign,0x1000,-pagezero_size,0x1000,-sectcreate,__TEXT,__info_plist,loader/wine_info.plist,-segaddr,WINE_4GB_RESERVE,0x100000000" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_new_main -e _main" >&5 -$as_echo_n "checking whether the compiler supports -Wl,-no_new_main -e _main... " >&6; } -if ${ac_cv_cflags__Wl__no_new_main__e__main+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_new_main -e _main" >&5 +printf %s "checking whether the compiler supports -Wl,-no_new_main -e _main... " >&6; } +if test ${ac_cv_cflags__Wl__no_new_main__e__main+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,-no_new_main -e _main" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl__no_new_main__e__main=yes -else +else $as_nop ac_cv_cflags__Wl__no_new_main__e__main=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_new_main__e__main" >&5 -$as_echo "$ac_cv_cflags__Wl__no_new_main__e__main" >&6; } -if test "x$ac_cv_cflags__Wl__no_new_main__e__main" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_new_main__e__main" >&5 +printf "%s\n" "$ac_cv_cflags__Wl__no_new_main__e__main" >&6; } +if test "x$ac_cv_cflags__Wl__no_new_main__e__main" = xyes +then : WINEPRELOADER_LDFLAGS="-Wl,-no_new_main $WINEPRELOADER_LDFLAGS" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_new_main -e _main -nostartfiles -nodefaultlibs" >&5 -$as_echo_n "checking whether the compiler supports -Wl,-no_new_main -e _main -nostartfiles -nodefaultlibs... " >&6; } -if ${ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_new_main -e _main -nostartfiles -nodefaultlibs" >&5 +printf %s "checking whether the compiler supports -Wl,-no_new_main -e _main -nostartfiles -nodefaultlibs... " >&6; } +if test ${ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,-no_new_main -e _main -nostartfiles -nodefaultlibs" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs=yes -else +else $as_nop ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs" >&5 -$as_echo "$ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs" >&6; } -if test "x$ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs" >&5 +printf "%s\n" "$ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs" >&6; } +if test "x$ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wl,-no_new_main -e _main -nostartfiles -nodefaultlibs" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_new_main -e _main -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs" >&5 -$as_echo_n "checking whether the compiler supports -Wl,-no_new_main -e _main -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs... " >&6; } -if ${ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs+:} false; then : - $as_echo_n "(cached) " >&6 -else +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_new_main -e _main -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs" >&5 +printf %s "checking whether the compiler supports -Wl,-no_new_main -e _main -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs... " >&6; } +if test ${ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,-no_new_main -e _main -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs=yes -else +else $as_nop ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&5 -$as_echo "$ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&6; } -if test "x$ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&5 +printf "%s\n" "$ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&6; } +if test "x$ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" = xyes +then : WINEPRELOADER_LDFLAGS="-mmacosx-version-min=10.7 $WINEPRELOADER_LDFLAGS" -else +else $as_nop wine_can_build_preloader=no fi fi -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -nostartfiles -nodefaultlibs" >&5 -$as_echo_n "checking whether the compiler supports -nostartfiles -nodefaultlibs... " >&6; } -if ${ac_cv_cflags__nostartfiles__nodefaultlibs+:} false; then : - $as_echo_n "(cached) " >&6 -else +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -nostartfiles -nodefaultlibs" >&5 +printf %s "checking whether the compiler supports -nostartfiles -nodefaultlibs... " >&6; } +if test ${ac_cv_cflags__nostartfiles__nodefaultlibs+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -nostartfiles -nodefaultlibs" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__nostartfiles__nodefaultlibs=yes -else +else $as_nop ac_cv_cflags__nostartfiles__nodefaultlibs=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__nostartfiles__nodefaultlibs" >&5 -$as_echo "$ac_cv_cflags__nostartfiles__nodefaultlibs" >&6; } -if test "x$ac_cv_cflags__nostartfiles__nodefaultlibs" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__nostartfiles__nodefaultlibs" >&5 +printf "%s\n" "$ac_cv_cflags__nostartfiles__nodefaultlibs" >&6; } +if test "x$ac_cv_cflags__nostartfiles__nodefaultlibs" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -nostartfiles -nodefaultlibs" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs" >&5 -$as_echo_n "checking whether the compiler supports -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs... " >&6; } -if ${ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs+:} false; then : - $as_echo_n "(cached) " >&6 -else +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs" >&5 +printf %s "checking whether the compiler supports -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs... " >&6; } +if test ${ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs=yes -else +else $as_nop ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&5 -$as_echo "$ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&6; } -if test "x$ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&5 +printf "%s\n" "$ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&6; } +if test "x$ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" = xyes +then : WINEPRELOADER_LDFLAGS="-mmacosx-version-min=10.7 $WINEPRELOADER_LDFLAGS" -else +else $as_nop wine_can_build_preloader=no fi fi fi if test "$wine_can_build_preloader" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_pie" >&5 -$as_echo_n "checking whether the compiler supports -Wl,-no_pie... " >&6; } -if ${ac_cv_cflags__Wl__no_pie+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_pie" >&5 +printf %s "checking whether the compiler supports -Wl,-no_pie... " >&6; } +if test ${ac_cv_cflags__Wl__no_pie+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,-no_pie" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl__no_pie=yes -else +else $as_nop ac_cv_cflags__Wl__no_pie=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_pie" >&5 -$as_echo "$ac_cv_cflags__Wl__no_pie" >&6; } -if test "x$ac_cv_cflags__Wl__no_pie" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_pie" >&5 +printf "%s\n" "$ac_cv_cflags__Wl__no_pie" >&6; } +if test "x$ac_cv_cflags__Wl__no_pie" = xyes +then : WINEPRELOADER_LDFLAGS="-Wl,-no_pie $WINEPRELOADER_LDFLAGS" fi test "$wine_binary" = wine || wine_fn_append_file CONFIGURE_TARGETS "loader/wine-preloader" @@ -8975,16 +10676,12 @@ fi
ac_save_LIBS="$LIBS" LIBS="$LIBS $SECURITY_LIBS" - for ac_func in SSLCopyPeerCertificates -do : - ac_fn_c_check_func "$LINENO" "SSLCopyPeerCertificates" "ac_cv_func_SSLCopyPeerCertificates" -if test "x$ac_cv_func_SSLCopyPeerCertificates" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_SSLCOPYPEERCERTIFICATES 1 -_ACEOF + ac_fn_c_check_func "$LINENO" "SSLCopyPeerCertificates" "ac_cv_func_SSLCopyPeerCertificates" +if test "x$ac_cv_func_SSLCopyPeerCertificates" = xyes +then : + printf "%s\n" "#define HAVE_SSLCOPYPEERCERTIFICATES 1" >>confdefs.h
fi -done
LIBS="$ac_save_LIBS" fi @@ -8999,9 +10696,7 @@ done OPENAL_LIBS="-framework OpenAL"
-cat >>confdefs.h <<_ACEOF -#define HAVE_OPENAL 1 -_ACEOF +printf "%s\n" "#define HAVE_OPENAL 1" >>confdefs.h
ac_cv_lib_openal=yes fi @@ -9015,16 +10710,12 @@ _ACEOF then ac_save_LIBS="$LIBS" LIBS="$LIBS $IOKIT_LIBS" - for ac_func in IOHIDManagerCreate -do : - ac_fn_c_check_func "$LINENO" "IOHIDManagerCreate" "ac_cv_func_IOHIDManagerCreate" -if test "x$ac_cv_func_IOHIDManagerCreate" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_IOHIDMANAGERCREATE 1 -_ACEOF + ac_fn_c_check_func "$LINENO" "IOHIDManagerCreate" "ac_cv_func_IOHIDManagerCreate" +if test "x$ac_cv_func_IOHIDManagerCreate" = xyes +then : + printf "%s\n" "#define HAVE_IOHIDMANAGERCREATE 1" >>confdefs.h
fi -done
LIBS="$ac_save_LIBS" fi @@ -9035,36 +10726,38 @@ done then ac_save_LIBS="$LIBS" LIBS="-framework QuickTime -framework ApplicationServices -framework CoreVideo $LIBS" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the QuickTime framework" >&5 -$as_echo_n "checking for the QuickTime framework... " >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for the QuickTime framework" >&5 +printf %s "checking for the QuickTime framework... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <QuickTime/ImageCompression.h> int -main () +main (void) { CodecManagerVersion(NULL); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } +if ac_fn_c_try_link "$LINENO" +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +printf "%s\n" "yes" >&6; } QUICKTIME_LIBS="-framework QuickTime -framework ApplicationServices -framework CoreVideo"
enable_wineqtdecoder=${enable_wineqtdecoder:-yes} -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } ac_cv_header_QuickTime_ImageCompression_h=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS="$ac_save_LIBS" fi fi - if test "$ac_cv_header_QuickTime_ImageCompression_h" != "yes"; then : + if test "$ac_cv_header_QuickTime_ImageCompression_h" != "yes" +then : case "x$with_quicktime" in x) as_fn_append wine_notices "|QuickTime ${notice_platform}development files not found, video decoding won't be supported." ;; xno) ;; @@ -9087,8 +10780,8 @@ fi
if test "$ac_cv_header_Metal_Metal_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether MTLDevice protocol supports registryID property" >&5 -$as_echo_n "checking whether MTLDevice protocol supports registryID property... " >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether MTLDevice protocol supports registryID property" >&5 +printf %s "checking whether MTLDevice protocol supports registryID property... " >&6; } ac_ext=m ac_cpp='$OBJCPP $CPPFLAGS' ac_compile='$OBJC -c $OBJCFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -9099,24 +10792,25 @@ ac_compiler_gnu=$ac_cv_objc_compiler_gnu /* end confdefs.h. */ #include <Metal/Metal.h> int -main () +main (void) { id<MTLDevice> device; device.registryID; ; return 0; } _ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } +if ac_fn_objc_try_compile "$LINENO" +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +printf "%s\n" "yes" >&6; }
-$as_echo "#define HAVE_MTLDEVICE_REGISTRYID 1" >>confdefs.h +printf "%s\n" "#define HAVE_MTLDEVICE_REGISTRYID 1" >>confdefs.h
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -9130,7 +10824,8 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_save_LIBS="$LIBS" LIBS="$LIBS $APPLICATIONSERVICES_LIBS" ac_fn_c_check_func "$LINENO" "CGDisplayModeGetWidth" "ac_cv_func_CGDisplayModeGetWidth" -if test "x$ac_cv_func_CGDisplayModeGetWidth" = xyes; then : +if test "x$ac_cv_func_CGDisplayModeGetWidth" = xyes +then : enable_winemac_drv=${enable_winemac_drv:-yes} fi
@@ -9151,38 +10846,42 @@ fi LDDLLFLAGS="-fPIC" LDEXECFLAGS="-Wl,-pie" enable_wineandroid_drv=${enable_wineandroid_drv:-yes} - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fPIC -Wl,--export-dynamic" >&5 -$as_echo_n "checking whether the compiler supports -fPIC -Wl,--export-dynamic... " >&6; } -if ${ac_cv_cflags__fPIC__Wl___export_dynamic+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fPIC -Wl,--export-dynamic" >&5 +printf %s "checking whether the compiler supports -fPIC -Wl,--export-dynamic... " >&6; } +if test ${ac_cv_cflags__fPIC__Wl___export_dynamic+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fPIC -Wl,--export-dynamic" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fPIC__Wl___export_dynamic=yes -else +else $as_nop ac_cv_cflags__fPIC__Wl___export_dynamic=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fPIC__Wl___export_dynamic" >&5 -$as_echo "$ac_cv_cflags__fPIC__Wl___export_dynamic" >&6; } -if test "x$ac_cv_cflags__fPIC__Wl___export_dynamic" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fPIC__Wl___export_dynamic" >&5 +printf "%s\n" "$ac_cv_cflags__fPIC__Wl___export_dynamic" >&6; } +if test "x$ac_cv_cflags__fPIC__Wl___export_dynamic" = xyes +then : WINELOADER_LDFLAGS="-Wl,--export-dynamic" fi WINEPRELOADER_LDFLAGS="-static -nostartfiles -nodefaultlibs -Wl,-Ttext=0x7d400000"
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lEGL" >&5 -$as_echo_n "checking for -lEGL... " >&6; } -if ${ac_cv_lib_soname_EGL+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lEGL" >&5 +printf %s "checking for -lEGL... " >&6; } +if test ${ac_cv_lib_soname_EGL+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lEGL $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -9191,53 +10890,52 @@ LIBS="-lEGL $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char eglGetProcAddress (); int -main () +main (void) { return eglGetProcAddress (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_EGL=`$ac_cv_path_LDD conftest.exe | grep "EGL" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_EGL=`$OTOOL -L conftest$ac_exeext | grep "libEGL\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libEGL.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_EGL=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libEGL\.$LIBEXT" | sed -e "s/^.*\[\(libEGL\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_EGL:+false} :; then : + if ${ac_cv_lib_soname_EGL:+false} : +then : ac_cv_lib_soname_EGL=`$LDD conftest$ac_exeext | grep "libEGL\.$LIBEXT" | sed -e "s/^.*(libEGL.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_EGL= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_EGL:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_EGL:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_EGL" >&5 -$as_echo "$ac_cv_lib_soname_EGL" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_EGL" >&5 +printf "%s\n" "$ac_cv_lib_soname_EGL" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBEGL "$ac_cv_lib_soname_EGL" -_ACEOF +printf "%s\n" "#define SONAME_LIBEGL "$ac_cv_lib_soname_EGL"" >>confdefs.h
fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lGLESv2" >&5 -$as_echo_n "checking for -lGLESv2... " >&6; } -if ${ac_cv_lib_soname_GLESv2+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lGLESv2" >&5 +printf %s "checking for -lGLESv2... " >&6; } +if test ${ac_cv_lib_soname_GLESv2+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lGLESv2 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -9246,45 +10944,43 @@ LIBS="-lGLESv2 $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char glFlush (); int -main () +main (void) { return glFlush (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_GLESv2=`$ac_cv_path_LDD conftest.exe | grep "GLESv2" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_GLESv2=`$OTOOL -L conftest$ac_exeext | grep "libGLESv2\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libGLESv2.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_GLESv2=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libGLESv2\.$LIBEXT" | sed -e "s/^.*\[\(libGLESv2\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_GLESv2:+false} :; then : + if ${ac_cv_lib_soname_GLESv2:+false} : +then : ac_cv_lib_soname_GLESv2=`$LDD conftest$ac_exeext | grep "libGLESv2\.$LIBEXT" | sed -e "s/^.*(libGLESv2.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_GLESv2= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_GLESv2:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_GLESv2:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_GLESv2" >&5 -$as_echo "$ac_cv_lib_soname_GLESv2" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_GLESv2" >&5 +printf "%s\n" "$ac_cv_lib_soname_GLESv2" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBGLESV2 "$ac_cv_lib_soname_GLESv2" -_ACEOF +printf "%s\n" "#define SONAME_LIBGLESV2 "$ac_cv_lib_soname_GLESv2"" >>confdefs.h
fi @@ -9305,29 +11001,32 @@ fi *i[3456789]86*) DLLFLAGS="$DLLFLAGS -fno-PIC" LDDLLFLAGS="-fno-PIC" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-PIC -Wl,-z,notext" >&5 -$as_echo_n "checking whether the compiler supports -fno-PIC -Wl,-z,notext... " >&6; } -if ${ac_cv_cflags__fno_PIC__Wl__z_notext+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-PIC -Wl,-z,notext" >&5 +printf %s "checking whether the compiler supports -fno-PIC -Wl,-z,notext... " >&6; } +if test ${ac_cv_cflags__fno_PIC__Wl__z_notext+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fno-PIC -Wl,-z,notext" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fno_PIC__Wl__z_notext=yes -else +else $as_nop ac_cv_cflags__fno_PIC__Wl__z_notext=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_PIC__Wl__z_notext" >&5 -$as_echo "$ac_cv_cflags__fno_PIC__Wl__z_notext" >&6; } -if test "x$ac_cv_cflags__fno_PIC__Wl__z_notext" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_PIC__Wl__z_notext" >&5 +printf "%s\n" "$ac_cv_cflags__fno_PIC__Wl__z_notext" >&6; } +if test "x$ac_cv_cflags__fno_PIC__Wl__z_notext" = xyes +then : LDDLLFLAGS="$LDDLLFLAGS -Wl,-z,notext" fi ;; @@ -9335,196 +11034,217 @@ fi DLLFLAGS="$DLLFLAGS -fPIC" LDDLLFLAGS="-fPIC" ;; esac - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we can build a GNU style ELF dll" >&5 -$as_echo_n "checking whether we can build a GNU style ELF dll... " >&6; } -if ${ac_cv_c_dll_gnuelf+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we can build a GNU style ELF dll" >&5 +printf %s "checking whether we can build a GNU style ELF dll... " >&6; } +if test ${ac_cv_c_dll_gnuelf+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fPIC -shared -Wl,-Bsymbolic" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ void myfunc() {} _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fPIC__shared__Wl__Bsymbolic=yes -else +else $as_nop ac_cv_cflags__fPIC__shared__Wl__Bsymbolic=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved -if test "x$ac_cv_cflags__fPIC__shared__Wl__Bsymbolic" = xyes; then : +if test "x$ac_cv_cflags__fPIC__shared__Wl__Bsymbolic" = xyes +then : ac_cv_c_dll_gnuelf="yes" -else +else $as_nop ac_cv_c_dll_gnuelf="no" fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_dll_gnuelf" >&5 -$as_echo "$ac_cv_c_dll_gnuelf" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_dll_gnuelf" >&5 +printf "%s\n" "$ac_cv_c_dll_gnuelf" >&6; } if test "$ac_cv_c_dll_gnuelf" = "yes" then LIBWINE_LDFLAGS="-shared" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -shared -Wl,-soname,confest.so.1" >&5 -$as_echo_n "checking whether the compiler supports -shared -Wl,-soname,confest.so.1... " >&6; } -if ${ac_cv_cflags__shared__Wl__soname_confest_so_1+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -shared -Wl,-soname,confest.so.1" >&5 +printf %s "checking whether the compiler supports -shared -Wl,-soname,confest.so.1... " >&6; } +if test ${ac_cv_cflags__shared__Wl__soname_confest_so_1+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -shared -Wl,-soname,confest.so.1" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__shared__Wl__soname_confest_so_1=yes -else +else $as_nop ac_cv_cflags__shared__Wl__soname_confest_so_1=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__shared__Wl__soname_confest_so_1" >&5 -$as_echo "$ac_cv_cflags__shared__Wl__soname_confest_so_1" >&6; } -if test "x$ac_cv_cflags__shared__Wl__soname_confest_so_1" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__shared__Wl__soname_confest_so_1" >&5 +printf "%s\n" "$ac_cv_cflags__shared__Wl__soname_confest_so_1" >&6; } +if test "x$ac_cv_cflags__shared__Wl__soname_confest_so_1" = xyes +then : LIBWINE_LDFLAGS="-shared -Wl,-soname,libwine.so.$libwine_soversion" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -shared -Wl,-h,confest.so.1" >&5 -$as_echo_n "checking whether the compiler supports -shared -Wl,-h,confest.so.1... " >&6; } -if ${ac_cv_cflags__shared__Wl__h_confest_so_1+:} false; then : - $as_echo_n "(cached) " >&6 -else +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -shared -Wl,-h,confest.so.1" >&5 +printf %s "checking whether the compiler supports -shared -Wl,-h,confest.so.1... " >&6; } +if test ${ac_cv_cflags__shared__Wl__h_confest_so_1+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -shared -Wl,-h,confest.so.1" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__shared__Wl__h_confest_so_1=yes -else +else $as_nop ac_cv_cflags__shared__Wl__h_confest_so_1=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__shared__Wl__h_confest_so_1" >&5 -$as_echo "$ac_cv_cflags__shared__Wl__h_confest_so_1" >&6; } -if test "x$ac_cv_cflags__shared__Wl__h_confest_so_1" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__shared__Wl__h_confest_so_1" >&5 +printf "%s\n" "$ac_cv_cflags__shared__Wl__h_confest_so_1" >&6; } +if test "x$ac_cv_cflags__shared__Wl__h_confest_so_1" = xyes +then : LIBWINE_LDFLAGS="-shared -Wl,-h,libwine.so.$libwine_soversion" fi fi
echo '{ global: *; };' >conftest.map - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -shared -Wl,--version-script=conftest.map" >&5 -$as_echo_n "checking whether the compiler supports -shared -Wl,--version-script=conftest.map... " >&6; } -if ${ac_cv_cflags__shared__Wl___version_script_conftest_map+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -shared -Wl,--version-script=conftest.map" >&5 +printf %s "checking whether the compiler supports -shared -Wl,--version-script=conftest.map... " >&6; } +if test ${ac_cv_cflags__shared__Wl___version_script_conftest_map+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -shared -Wl,--version-script=conftest.map" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__shared__Wl___version_script_conftest_map=yes -else +else $as_nop ac_cv_cflags__shared__Wl___version_script_conftest_map=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__shared__Wl___version_script_conftest_map" >&5 -$as_echo "$ac_cv_cflags__shared__Wl___version_script_conftest_map" >&6; } -if test "x$ac_cv_cflags__shared__Wl___version_script_conftest_map" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__shared__Wl___version_script_conftest_map" >&5 +printf "%s\n" "$ac_cv_cflags__shared__Wl___version_script_conftest_map" >&6; } +if test "x$ac_cv_cflags__shared__Wl___version_script_conftest_map" = xyes +then : LIBWINE_LDFLAGS="$LIBWINE_LDFLAGS -Wl,--version-script=$(srcdir)/wine.map" fi rm -f conftest.map
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--export-dynamic" >&5 -$as_echo_n "checking whether the compiler supports -Wl,--export-dynamic... " >&6; } -if ${ac_cv_cflags__Wl___export_dynamic+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--export-dynamic" >&5 +printf %s "checking whether the compiler supports -Wl,--export-dynamic... " >&6; } +if test ${ac_cv_cflags__Wl___export_dynamic+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,--export-dynamic" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl___export_dynamic=yes -else +else $as_nop ac_cv_cflags__Wl___export_dynamic=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___export_dynamic" >&5 -$as_echo "$ac_cv_cflags__Wl___export_dynamic" >&6; } -if test "x$ac_cv_cflags__Wl___export_dynamic" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___export_dynamic" >&5 +printf "%s\n" "$ac_cv_cflags__Wl___export_dynamic" >&6; } +if test "x$ac_cv_cflags__Wl___export_dynamic" = xyes +then : WINELOADER_LDFLAGS="-Wl,--export-dynamic" fi WINEPRELOADER_LDFLAGS="-static -nostartfiles -nodefaultlibs -Wl,-Ttext=0x7d400000"
case $host_cpu in *i[3456789]86* | x86_64 | *aarch64* | arm*) - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-Ttext-segment=0x7bc00000" >&5 -$as_echo_n "checking whether the compiler supports -Wl,-Ttext-segment=0x7bc00000... " >&6; } -if ${ac_cv_cflags__Wl__Ttext_segment_0x7bc00000+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-Ttext-segment=0x7bc00000" >&5 +printf %s "checking whether the compiler supports -Wl,-Ttext-segment=0x7bc00000... " >&6; } +if test ${ac_cv_cflags__Wl__Ttext_segment_0x7bc00000+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,-Ttext-segment=0x7bc00000" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl__Ttext_segment_0x7bc00000=yes -else +else $as_nop ac_cv_cflags__Wl__Ttext_segment_0x7bc00000=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__Ttext_segment_0x7bc00000" >&5 -$as_echo "$ac_cv_cflags__Wl__Ttext_segment_0x7bc00000" >&6; } -if test "x$ac_cv_cflags__Wl__Ttext_segment_0x7bc00000" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__Ttext_segment_0x7bc00000" >&5 +printf "%s\n" "$ac_cv_cflags__Wl__Ttext_segment_0x7bc00000" >&6; } +if test "x$ac_cv_cflags__Wl__Ttext_segment_0x7bc00000" = xyes +then : case $host_os in freebsd* | kfreebsd*-gnu) WINELOADER_LDFLAGS="$WINELOADER_LDFLAGS -Wl,-Ttext-segment=0x60000000" ;; *) WINELOADER_LDFLAGS="$WINELOADER_LDFLAGS -Wl,-Ttext-segment=0x7d000000" ;; esac -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--section-start,.interp=0x7d000400" >&5 -$as_echo_n "checking whether the compiler supports -Wl,--section-start,.interp=0x7d000400... " >&6; } -if ${ac_cv_cflags__Wl___section_start__interp_0x7d000400+:} false; then : - $as_echo_n "(cached) " >&6 -else +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--section-start,.interp=0x7d000400" >&5 +printf %s "checking whether the compiler supports -Wl,--section-start,.interp=0x7d000400... " >&6; } +if test ${ac_cv_cflags__Wl___section_start__interp_0x7d000400+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,--section-start,.interp=0x7d000400" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl___section_start__interp_0x7d000400=yes -else +else $as_nop ac_cv_cflags__Wl___section_start__interp_0x7d000400=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___section_start__interp_0x7d000400" >&5 -$as_echo "$ac_cv_cflags__Wl___section_start__interp_0x7d000400" >&6; } -if test "x$ac_cv_cflags__Wl___section_start__interp_0x7d000400" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___section_start__interp_0x7d000400" >&5 +printf "%s\n" "$ac_cv_cflags__Wl___section_start__interp_0x7d000400" >&6; } +if test "x$ac_cv_cflags__Wl___section_start__interp_0x7d000400" = xyes +then : case $host_os in freebsd* | kfreebsd*-gnu) WINELOADER_LDFLAGS="$WINELOADER_LDFLAGS -Wl,--section-start,.interp=0x60000400" ;; *) WINELOADER_LDFLAGS="$WINELOADER_LDFLAGS -Wl,--section-start,.interp=0x7d000400" ;; @@ -9532,11 +11252,12 @@ if test "x$ac_cv_cflags__Wl___section_start__interp_0x7d000400" = xyes; then : fi # Extract the first word of "prelink", so it can be a program name with args. set dummy prelink; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PRELINK+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_path_PRELINK+y} +then : + printf %s "(cached) " >&6 +else $as_nop case $PRELINK in [\/]* | ?:[\/]*) ac_cv_path_PRELINK="$PRELINK" # Let the user override the test with a path. @@ -9546,11 +11267,15 @@ else for as_dir in /sbin /usr/sbin $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PRELINK="$as_dir/$ac_word$ac_exec_ext" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then + ac_cv_path_PRELINK="$as_dir$ac_word$ac_exec_ext" + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -9563,11 +11288,11 @@ esac fi PRELINK=$ac_cv_path_PRELINK if test -n "$PRELINK"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PRELINK" >&5 -$as_echo "$PRELINK" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PRELINK" >&5 +printf "%s\n" "$PRELINK" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -9576,62 +11301,68 @@ fi as_fn_append wine_warnings "|prelink not found and linker does not support relocation, base address of core dlls won't be set correctly." fi fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-z,max-page-size=0x1000" >&5 -$as_echo_n "checking whether the compiler supports -Wl,-z,max-page-size=0x1000... " >&6; } -if ${ac_cv_cflags__Wl__z_max_page_size_0x1000+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-z,max-page-size=0x1000" >&5 +printf %s "checking whether the compiler supports -Wl,-z,max-page-size=0x1000... " >&6; } +if test ${ac_cv_cflags__Wl__z_max_page_size_0x1000+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,-z,max-page-size=0x1000" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl__z_max_page_size_0x1000=yes -else +else $as_nop ac_cv_cflags__Wl__z_max_page_size_0x1000=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__z_max_page_size_0x1000" >&5 -$as_echo "$ac_cv_cflags__Wl__z_max_page_size_0x1000" >&6; } -if test "x$ac_cv_cflags__Wl__z_max_page_size_0x1000" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__z_max_page_size_0x1000" >&5 +printf "%s\n" "$ac_cv_cflags__Wl__z_max_page_size_0x1000" >&6; } +if test "x$ac_cv_cflags__Wl__z_max_page_size_0x1000" = xyes +then : WINELOADER_LDFLAGS="$WINELOADER_LDFLAGS -Wl,-z,max-page-size=0x1000" fi ;; esac
else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we can build a UnixWare (Solaris) dll" >&5 -$as_echo_n "checking whether we can build a UnixWare (Solaris) dll... " >&6; } -if ${ac_cv_c_dll_unixware+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we can build a UnixWare (Solaris) dll" >&5 +printf %s "checking whether we can build a UnixWare (Solaris) dll... " >&6; } +if test ${ac_cv_c_dll_unixware+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ void myfunc() {} _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fPIC__Wl__G__h_conftest_so_1_0__B_symbolic=yes -else +else $as_nop ac_cv_cflags__fPIC__Wl__G__h_conftest_so_1_0__B_symbolic=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved -if test "x$ac_cv_cflags__fPIC__Wl__G__h_conftest_so_1_0__B_symbolic" = xyes; then : +if test "x$ac_cv_cflags__fPIC__Wl__G__h_conftest_so_1_0__B_symbolic" = xyes +then : ac_cv_c_dll_unixware="yes" -else +else $as_nop ac_cv_c_dll_unixware="no" fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_dll_unixware" >&5 -$as_echo "$ac_cv_c_dll_unixware" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_dll_unixware" >&5 +printf "%s\n" "$ac_cv_c_dll_unixware" >&6; } if test "$ac_cv_c_dll_unixware" = "yes" then LIBWINE_LDFLAGS="-Wl,-G,-h,libwine.so.$libwine_soversion" @@ -9674,11 +11405,12 @@ for ac_prog in $ac_prefix_list do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CROSSCC+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CROSSCC+y} +then : + printf %s "(cached) " >&6 +else $as_nop if test -n "$CROSSCC"; then ac_cv_prog_CROSSCC="$CROSSCC" # Let the user override the test. else @@ -9686,11 +11418,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac for ac_exec_ext in '' $ac_executable_extensions; do - if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CROSSCC="$ac_prog" - $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done @@ -9701,11 +11437,11 @@ fi fi CROSSCC=$ac_cv_prog_CROSSCC if test -n "$CROSSCC"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CROSSCC" >&5 -$as_echo "$CROSSCC" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CROSSCC" >&5 +printf "%s\n" "$CROSSCC" >&6; } else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } fi
@@ -9727,31 +11463,33 @@ test -n "$CROSSCC" || CROSSCC="false"
CC="$CROSSCC" CFLAGS=$CROSSCFLAGS - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CROSSCC works" >&5 -$as_echo_n "checking whether $CROSSCC works... " >&6; } -if ${wine_cv_crosscc+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CROSSCC works" >&5 +printf %s "checking whether $CROSSCC works... " >&6; } +if test ${wine_cv_crosscc+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : wine_cv_crosscc=yes -else +else $as_nop wine_cv_crosscc=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_crosscc" >&5 -$as_echo "$wine_cv_crosscc" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_crosscc" >&5 +printf "%s\n" "$wine_cv_crosscc" >&6; } if test $wine_cv_crosscc = yes then set x $CROSSCC @@ -9777,12 +11515,13 @@ $as_echo "$wine_cv_crosscc" >&6; } case $llvm_target in *windows) llvm_cflags="$llvm_cflags -Wl,-subsystem:console" ;; esac - as_ac_var=`$as_echo "ac_cv_crosscflags_-target $llvm_target $llvm_cflags" | $as_tr_sh` -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -target $llvm_target $llvm_cflags" >&5 -$as_echo_n "checking whether the cross-compiler supports -target $llvm_target $llvm_cflags... " >&6; } -if eval ${$as_ac_var+:} false; then : - $as_echo_n "(cached) " >&6 -else + as_ac_var=`printf "%s\n" "ac_cv_crosscflags_-target $llvm_target $llvm_cflags" | $as_tr_sh` +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -target $llvm_target $llvm_cflags" >&5 +printf %s "checking whether the cross-compiler supports -target $llvm_target $llvm_cflags... " >&6; } +if eval test ${$as_ac_var+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -9793,21 +11532,23 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : eval "$as_ac_var=yes" -else +else $as_nop eval "$as_ac_var=no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi eval ac_res=$$as_ac_var - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } -if eval test "x$"$as_ac_var"" = x"yes"; then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +printf "%s\n" "$ac_res" >&6; } +if eval test "x$"$as_ac_var"" = x"yes" +then : CROSSTARGET=$llvm_target EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -target $CROSSTARGET" DELAYLOADFLAG="-Wl,-delayload," @@ -9815,11 +11556,12 @@ if eval test "x$"$as_ac_var"" = x"yes"; then : CFLAGS="$CFLAGS $llvm_cflags" fi fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -fno-strict-aliasing" >&5 -$as_echo_n "checking whether the cross-compiler supports -fno-strict-aliasing... " >&6; } -if ${ac_cv_crosscflags__fno_strict_aliasing+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -fno-strict-aliasing" >&5 +printf %s "checking whether the cross-compiler supports -fno-strict-aliasing... " >&6; } +if test ${ac_cv_crosscflags__fno_strict_aliasing+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -9830,27 +11572,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__fno_strict_aliasing=yes -else +else $as_nop ac_cv_crosscflags__fno_strict_aliasing=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__fno_strict_aliasing" >&5 -$as_echo "$ac_cv_crosscflags__fno_strict_aliasing" >&6; } -if test "x$ac_cv_crosscflags__fno_strict_aliasing" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__fno_strict_aliasing" >&5 +printf "%s\n" "$ac_cv_crosscflags__fno_strict_aliasing" >&6; } +if test "x$ac_cv_crosscflags__fno_strict_aliasing" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -fno-strict-aliasing" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Werror=unknown-warning-option" >&5 -$as_echo_n "checking whether the cross-compiler supports -Werror=unknown-warning-option... " >&6; } -if ${ac_cv_crosscflags__Werror_unknown_warning_option+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Werror=unknown-warning-option" >&5 +printf %s "checking whether the cross-compiler supports -Werror=unknown-warning-option... " >&6; } +if test ${ac_cv_crosscflags__Werror_unknown_warning_option+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -9861,27 +11606,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Werror_unknown_warning_option=yes -else +else $as_nop ac_cv_crosscflags__Werror_unknown_warning_option=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Werror_unknown_warning_option" >&5 -$as_echo "$ac_cv_crosscflags__Werror_unknown_warning_option" >&6; } -if test "x$ac_cv_crosscflags__Werror_unknown_warning_option" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Werror_unknown_warning_option" >&5 +printf "%s\n" "$ac_cv_crosscflags__Werror_unknown_warning_option" >&6; } +if test "x$ac_cv_crosscflags__Werror_unknown_warning_option" = xyes +then : CFLAGS="$CFLAGS -Werror=unknown-warning-option" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Werror=ignored-optimization-argument" >&5 -$as_echo_n "checking whether the cross-compiler supports -Werror=ignored-optimization-argument... " >&6; } -if ${ac_cv_crosscflags__Werror_ignored_optimization_argument+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Werror=ignored-optimization-argument" >&5 +printf %s "checking whether the cross-compiler supports -Werror=ignored-optimization-argument... " >&6; } +if test ${ac_cv_crosscflags__Werror_ignored_optimization_argument+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -9892,27 +11640,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Werror_ignored_optimization_argument=yes -else +else $as_nop ac_cv_crosscflags__Werror_ignored_optimization_argument=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Werror_ignored_optimization_argument" >&5 -$as_echo "$ac_cv_crosscflags__Werror_ignored_optimization_argument" >&6; } -if test "x$ac_cv_crosscflags__Werror_ignored_optimization_argument" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Werror_ignored_optimization_argument" >&5 +printf "%s\n" "$ac_cv_crosscflags__Werror_ignored_optimization_argument" >&6; } +if test "x$ac_cv_crosscflags__Werror_ignored_optimization_argument" = xyes +then : CFLAGS="$CFLAGS -Werror=ignored-optimization-argument" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wdeclaration-after-statement" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wdeclaration-after-statement... " >&6; } -if ${ac_cv_crosscflags__Wdeclaration_after_statement+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wdeclaration-after-statement" >&5 +printf %s "checking whether the cross-compiler supports -Wdeclaration-after-statement... " >&6; } +if test ${ac_cv_crosscflags__Wdeclaration_after_statement+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -9923,27 +11674,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wdeclaration_after_statement=yes -else +else $as_nop ac_cv_crosscflags__Wdeclaration_after_statement=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wdeclaration_after_statement" >&5 -$as_echo "$ac_cv_crosscflags__Wdeclaration_after_statement" >&6; } -if test "x$ac_cv_crosscflags__Wdeclaration_after_statement" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wdeclaration_after_statement" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wdeclaration_after_statement" >&6; } +if test "x$ac_cv_crosscflags__Wdeclaration_after_statement" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wdeclaration-after-statement" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wempty-body" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wempty-body... " >&6; } -if ${ac_cv_crosscflags__Wempty_body+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wempty-body" >&5 +printf %s "checking whether the cross-compiler supports -Wempty-body... " >&6; } +if test ${ac_cv_crosscflags__Wempty_body+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -9954,27 +11708,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wempty_body=yes -else +else $as_nop ac_cv_crosscflags__Wempty_body=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wempty_body" >&5 -$as_echo "$ac_cv_crosscflags__Wempty_body" >&6; } -if test "x$ac_cv_crosscflags__Wempty_body" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wempty_body" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wempty_body" >&6; } +if test "x$ac_cv_crosscflags__Wempty_body" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wempty-body" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wignored-qualifiers" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wignored-qualifiers... " >&6; } -if ${ac_cv_crosscflags__Wignored_qualifiers+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wignored-qualifiers" >&5 +printf %s "checking whether the cross-compiler supports -Wignored-qualifiers... " >&6; } +if test ${ac_cv_crosscflags__Wignored_qualifiers+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -9985,27 +11742,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wignored_qualifiers=yes -else +else $as_nop ac_cv_crosscflags__Wignored_qualifiers=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wignored_qualifiers" >&5 -$as_echo "$ac_cv_crosscflags__Wignored_qualifiers" >&6; } -if test "x$ac_cv_crosscflags__Wignored_qualifiers" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wignored_qualifiers" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wignored_qualifiers" >&6; } +if test "x$ac_cv_crosscflags__Wignored_qualifiers" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wignored-qualifiers" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Winit-self" >&5 -$as_echo_n "checking whether the cross-compiler supports -Winit-self... " >&6; } -if ${ac_cv_crosscflags__Winit_self+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Winit-self" >&5 +printf %s "checking whether the cross-compiler supports -Winit-self... " >&6; } +if test ${ac_cv_crosscflags__Winit_self+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10016,27 +11776,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Winit_self=yes -else +else $as_nop ac_cv_crosscflags__Winit_self=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Winit_self" >&5 -$as_echo "$ac_cv_crosscflags__Winit_self" >&6; } -if test "x$ac_cv_crosscflags__Winit_self" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Winit_self" >&5 +printf "%s\n" "$ac_cv_crosscflags__Winit_self" >&6; } +if test "x$ac_cv_crosscflags__Winit_self" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Winit-self" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wpacked-not-aligned" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wpacked-not-aligned... " >&6; } -if ${ac_cv_crosscflags__Wpacked_not_aligned+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wpacked-not-aligned" >&5 +printf %s "checking whether the cross-compiler supports -Wpacked-not-aligned... " >&6; } +if test ${ac_cv_crosscflags__Wpacked_not_aligned+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10047,27 +11810,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wpacked_not_aligned=yes -else +else $as_nop ac_cv_crosscflags__Wpacked_not_aligned=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wpacked_not_aligned" >&5 -$as_echo "$ac_cv_crosscflags__Wpacked_not_aligned" >&6; } -if test "x$ac_cv_crosscflags__Wpacked_not_aligned" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wpacked_not_aligned" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wpacked_not_aligned" >&6; } +if test "x$ac_cv_crosscflags__Wpacked_not_aligned" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wno-packed-not-aligned" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wpragma-pack" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wpragma-pack... " >&6; } -if ${ac_cv_crosscflags__Wpragma_pack+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wpragma-pack" >&5 +printf %s "checking whether the cross-compiler supports -Wpragma-pack... " >&6; } +if test ${ac_cv_crosscflags__Wpragma_pack+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10078,27 +11844,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wpragma_pack=yes -else +else $as_nop ac_cv_crosscflags__Wpragma_pack=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wpragma_pack" >&5 -$as_echo "$ac_cv_crosscflags__Wpragma_pack" >&6; } -if test "x$ac_cv_crosscflags__Wpragma_pack" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wpragma_pack" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wpragma_pack" >&6; } +if test "x$ac_cv_crosscflags__Wpragma_pack" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wno-pragma-pack" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wshift-overflow=2" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wshift-overflow=2... " >&6; } -if ${ac_cv_crosscflags__Wshift_overflow_2+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wshift-overflow=2" >&5 +printf %s "checking whether the cross-compiler supports -Wshift-overflow=2... " >&6; } +if test ${ac_cv_crosscflags__Wshift_overflow_2+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10109,27 +11878,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wshift_overflow_2=yes -else +else $as_nop ac_cv_crosscflags__Wshift_overflow_2=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wshift_overflow_2" >&5 -$as_echo "$ac_cv_crosscflags__Wshift_overflow_2" >&6; } -if test "x$ac_cv_crosscflags__Wshift_overflow_2" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wshift_overflow_2" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wshift_overflow_2" >&6; } +if test "x$ac_cv_crosscflags__Wshift_overflow_2" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wshift-overflow=2" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wstrict-prototypes" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wstrict-prototypes... " >&6; } -if ${ac_cv_crosscflags__Wstrict_prototypes+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wstrict-prototypes" >&5 +printf %s "checking whether the cross-compiler supports -Wstrict-prototypes... " >&6; } +if test ${ac_cv_crosscflags__Wstrict_prototypes+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10140,27 +11912,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wstrict_prototypes=yes -else +else $as_nop ac_cv_crosscflags__Wstrict_prototypes=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wstrict_prototypes" >&5 -$as_echo "$ac_cv_crosscflags__Wstrict_prototypes" >&6; } -if test "x$ac_cv_crosscflags__Wstrict_prototypes" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wstrict_prototypes" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wstrict_prototypes" >&6; } +if test "x$ac_cv_crosscflags__Wstrict_prototypes" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wstrict-prototypes" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wtype-limits" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wtype-limits... " >&6; } -if ${ac_cv_crosscflags__Wtype_limits+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wtype-limits" >&5 +printf %s "checking whether the cross-compiler supports -Wtype-limits... " >&6; } +if test ${ac_cv_crosscflags__Wtype_limits+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10171,27 +11946,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wtype_limits=yes -else +else $as_nop ac_cv_crosscflags__Wtype_limits=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wtype_limits" >&5 -$as_echo "$ac_cv_crosscflags__Wtype_limits" >&6; } -if test "x$ac_cv_crosscflags__Wtype_limits" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wtype_limits" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wtype_limits" >&6; } +if test "x$ac_cv_crosscflags__Wtype_limits" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wtype-limits" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wunused-but-set-parameter" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wunused-but-set-parameter... " >&6; } -if ${ac_cv_crosscflags__Wunused_but_set_parameter+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wunused-but-set-parameter" >&5 +printf %s "checking whether the cross-compiler supports -Wunused-but-set-parameter... " >&6; } +if test ${ac_cv_crosscflags__Wunused_but_set_parameter+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10202,27 +11980,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wunused_but_set_parameter=yes -else +else $as_nop ac_cv_crosscflags__Wunused_but_set_parameter=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wunused_but_set_parameter" >&5 -$as_echo "$ac_cv_crosscflags__Wunused_but_set_parameter" >&6; } -if test "x$ac_cv_crosscflags__Wunused_but_set_parameter" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wunused_but_set_parameter" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wunused_but_set_parameter" >&6; } +if test "x$ac_cv_crosscflags__Wunused_but_set_parameter" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wunused-but-set-parameter" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wvla" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wvla... " >&6; } -if ${ac_cv_crosscflags__Wvla+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wvla" >&5 +printf %s "checking whether the cross-compiler supports -Wvla... " >&6; } +if test ${ac_cv_crosscflags__Wvla+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10233,27 +12014,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wvla=yes -else +else $as_nop ac_cv_crosscflags__Wvla=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wvla" >&5 -$as_echo "$ac_cv_crosscflags__Wvla" >&6; } -if test "x$ac_cv_crosscflags__Wvla" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wvla" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wvla" >&6; } +if test "x$ac_cv_crosscflags__Wvla" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wvla" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wwrite-strings" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wwrite-strings... " >&6; } -if ${ac_cv_crosscflags__Wwrite_strings+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wwrite-strings" >&5 +printf %s "checking whether the cross-compiler supports -Wwrite-strings... " >&6; } +if test ${ac_cv_crosscflags__Wwrite_strings+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10264,27 +12048,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wwrite_strings=yes -else +else $as_nop ac_cv_crosscflags__Wwrite_strings=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wwrite_strings" >&5 -$as_echo "$ac_cv_crosscflags__Wwrite_strings" >&6; } -if test "x$ac_cv_crosscflags__Wwrite_strings" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wwrite_strings" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wwrite_strings" >&6; } +if test "x$ac_cv_crosscflags__Wwrite_strings" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wwrite-strings" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wpointer-arith" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wpointer-arith... " >&6; } -if ${ac_cv_crosscflags__Wpointer_arith+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wpointer-arith" >&5 +printf %s "checking whether the cross-compiler supports -Wpointer-arith... " >&6; } +if test ${ac_cv_crosscflags__Wpointer_arith+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10295,27 +12082,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wpointer_arith=yes -else +else $as_nop ac_cv_crosscflags__Wpointer_arith=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wpointer_arith" >&5 -$as_echo "$ac_cv_crosscflags__Wpointer_arith" >&6; } -if test "x$ac_cv_crosscflags__Wpointer_arith" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wpointer_arith" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wpointer_arith" >&6; } +if test "x$ac_cv_crosscflags__Wpointer_arith" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wpointer-arith" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wlogical-op" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wlogical-op... " >&6; } -if ${ac_cv_crosscflags__Wlogical_op+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wlogical-op" >&5 +printf %s "checking whether the cross-compiler supports -Wlogical-op... " >&6; } +if test ${ac_cv_crosscflags__Wlogical_op+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10326,27 +12116,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wlogical_op=yes -else +else $as_nop ac_cv_crosscflags__Wlogical_op=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wlogical_op" >&5 -$as_echo "$ac_cv_crosscflags__Wlogical_op" >&6; } -if test "x$ac_cv_crosscflags__Wlogical_op" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wlogical_op" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wlogical_op" >&6; } +if test "x$ac_cv_crosscflags__Wlogical_op" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wlogical-op" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wabsolute-value" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wabsolute-value... " >&6; } -if ${ac_cv_crosscflags__Wabsolute_value+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wabsolute-value" >&5 +printf %s "checking whether the cross-compiler supports -Wabsolute-value... " >&6; } +if test ${ac_cv_crosscflags__Wabsolute_value+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10357,29 +12150,32 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wabsolute_value=yes -else +else $as_nop ac_cv_crosscflags__Wabsolute_value=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wabsolute_value" >&5 -$as_echo "$ac_cv_crosscflags__Wabsolute_value" >&6; } -if test "x$ac_cv_crosscflags__Wabsolute_value" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wabsolute_value" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wabsolute_value" >&6; } +if test "x$ac_cv_crosscflags__Wabsolute_value" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wabsolute-value" fi
case $host_cpu in - *i[3456789]86*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -fno-omit-frame-pointer" >&5 -$as_echo_n "checking whether the cross-compiler supports -fno-omit-frame-pointer... " >&6; } -if ${ac_cv_crosscflags__fno_omit_frame_pointer+:} false; then : - $as_echo_n "(cached) " >&6 -else + *i[3456789]86*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -fno-omit-frame-pointer" >&5 +printf %s "checking whether the cross-compiler supports -fno-omit-frame-pointer... " >&6; } +if test ${ac_cv_crosscflags__fno_omit_frame_pointer+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10390,27 +12186,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__fno_omit_frame_pointer=yes -else +else $as_nop ac_cv_crosscflags__fno_omit_frame_pointer=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__fno_omit_frame_pointer" >&5 -$as_echo "$ac_cv_crosscflags__fno_omit_frame_pointer" >&6; } -if test "x$ac_cv_crosscflags__fno_omit_frame_pointer" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__fno_omit_frame_pointer" >&5 +printf "%s\n" "$ac_cv_crosscflags__fno_omit_frame_pointer" >&6; } +if test "x$ac_cv_crosscflags__fno_omit_frame_pointer" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -fno-omit-frame-pointer" fi ;; - x86_64) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wno-format" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wno-format... " >&6; } -if ${ac_cv_crosscflags__Wno_format+:} false; then : - $as_echo_n "(cached) " >&6 -else + x86_64) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wno-format" >&5 +printf %s "checking whether the cross-compiler supports -Wno-format... " >&6; } +if test ${ac_cv_crosscflags__Wno_format+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10421,27 +12220,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wno_format=yes -else +else $as_nop ac_cv_crosscflags__Wno_format=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wno_format" >&5 -$as_echo "$ac_cv_crosscflags__Wno_format" >&6; } -if test "x$ac_cv_crosscflags__Wno_format" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wno_format" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wno_format" >&6; } +if test "x$ac_cv_crosscflags__Wno_format" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wno-format" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wformat-overflow" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wformat-overflow... " >&6; } -if ${ac_cv_crosscflags__Wformat_overflow+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wformat-overflow" >&5 +printf %s "checking whether the cross-compiler supports -Wformat-overflow... " >&6; } +if test ${ac_cv_crosscflags__Wformat_overflow+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10452,27 +12254,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wformat_overflow=yes -else +else $as_nop ac_cv_crosscflags__Wformat_overflow=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wformat_overflow" >&5 -$as_echo "$ac_cv_crosscflags__Wformat_overflow" >&6; } -if test "x$ac_cv_crosscflags__Wformat_overflow" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wformat_overflow" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wformat_overflow" >&6; } +if test "x$ac_cv_crosscflags__Wformat_overflow" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wformat-overflow" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wnonnull" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wnonnull... " >&6; } -if ${ac_cv_crosscflags__Wnonnull+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wnonnull" >&5 +printf %s "checking whether the cross-compiler supports -Wnonnull... " >&6; } +if test ${ac_cv_crosscflags__Wnonnull+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10483,27 +12288,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wnonnull=yes -else +else $as_nop ac_cv_crosscflags__Wnonnull=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wnonnull" >&5 -$as_echo "$ac_cv_crosscflags__Wnonnull" >&6; } -if test "x$ac_cv_crosscflags__Wnonnull" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wnonnull" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wnonnull" >&6; } +if test "x$ac_cv_crosscflags__Wnonnull" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wnonnull" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -mcx16" >&5 -$as_echo_n "checking whether the cross-compiler supports -mcx16... " >&6; } -if ${ac_cv_crosscflags__mcx16+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -mcx16" >&5 +printf %s "checking whether the cross-compiler supports -mcx16... " >&6; } +if test ${ac_cv_crosscflags__mcx16+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10514,27 +12322,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__mcx16=yes -else +else $as_nop ac_cv_crosscflags__mcx16=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__mcx16" >&5 -$as_echo "$ac_cv_crosscflags__mcx16" >&6; } -if test "x$ac_cv_crosscflags__mcx16" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__mcx16" >&5 +printf "%s\n" "$ac_cv_crosscflags__mcx16" >&6; } +if test "x$ac_cv_crosscflags__mcx16" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -mcx16" fi ;; - aarch64) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wno-format" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wno-format... " >&6; } -if ${ac_cv_crosscflags__Wno_format+:} false; then : - $as_echo_n "(cached) " >&6 -else + aarch64) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wno-format" >&5 +printf %s "checking whether the cross-compiler supports -Wno-format... " >&6; } +if test ${ac_cv_crosscflags__Wno_format+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10545,20 +12356,22 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wno_format=yes -else +else $as_nop ac_cv_crosscflags__Wno_format=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wno_format" >&5 -$as_echo "$ac_cv_crosscflags__Wno_format" >&6; } -if test "x$ac_cv_crosscflags__Wno_format" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wno_format" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wno_format" >&6; } +if test "x$ac_cv_crosscflags__Wno_format" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wno-format" fi ;; esac @@ -10575,11 +12388,12 @@ fi ;; done fi case $CROSSDEBUG in - *dwarf) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -gdwarf-2" >&5 -$as_echo_n "checking whether the cross-compiler supports -gdwarf-2... " >&6; } -if ${ac_cv_crosscflags__gdwarf_2+:} false; then : - $as_echo_n "(cached) " >&6 -else + *dwarf) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -gdwarf-2" >&5 +printf %s "checking whether the cross-compiler supports -gdwarf-2... " >&6; } +if test ${ac_cv_crosscflags__gdwarf_2+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10590,27 +12404,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__gdwarf_2=yes -else +else $as_nop ac_cv_crosscflags__gdwarf_2=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__gdwarf_2" >&5 -$as_echo "$ac_cv_crosscflags__gdwarf_2" >&6; } -if test "x$ac_cv_crosscflags__gdwarf_2" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__gdwarf_2" >&5 +printf "%s\n" "$ac_cv_crosscflags__gdwarf_2" >&6; } +if test "x$ac_cv_crosscflags__gdwarf_2" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -gdwarf-2" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -gstrict-dwarf" >&5 -$as_echo_n "checking whether the cross-compiler supports -gstrict-dwarf... " >&6; } -if ${ac_cv_crosscflags__gstrict_dwarf+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -gstrict-dwarf" >&5 +printf %s "checking whether the cross-compiler supports -gstrict-dwarf... " >&6; } +if test ${ac_cv_crosscflags__gstrict_dwarf+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10621,27 +12438,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__gstrict_dwarf=yes -else +else $as_nop ac_cv_crosscflags__gstrict_dwarf=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__gstrict_dwarf" >&5 -$as_echo "$ac_cv_crosscflags__gstrict_dwarf" >&6; } -if test "x$ac_cv_crosscflags__gstrict_dwarf" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__gstrict_dwarf" >&5 +printf "%s\n" "$ac_cv_crosscflags__gstrict_dwarf" >&6; } +if test "x$ac_cv_crosscflags__gstrict_dwarf" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -gstrict-dwarf" fi ;; - pdb) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -gcodeview" >&5 -$as_echo_n "checking whether the cross-compiler supports -gcodeview... " >&6; } -if ${ac_cv_crosscflags__gcodeview+:} false; then : - $as_echo_n "(cached) " >&6 -else + pdb) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -gcodeview" >&5 +printf %s "checking whether the cross-compiler supports -gcodeview... " >&6; } +if test ${ac_cv_crosscflags__gcodeview+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10652,29 +12472,32 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__gcodeview=yes -else +else $as_nop ac_cv_crosscflags__gcodeview=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__gcodeview" >&5 -$as_echo "$ac_cv_crosscflags__gcodeview" >&6; } -if test "x$ac_cv_crosscflags__gcodeview" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__gcodeview" >&5 +printf "%s\n" "$ac_cv_crosscflags__gcodeview" >&6; } +if test "x$ac_cv_crosscflags__gcodeview" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -gcodeview" fi ;; esac
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -fexcess-precision=standard" >&5 -$as_echo_n "checking whether the cross-compiler supports -fexcess-precision=standard... " >&6; } -if ${ac_cv_crosscflags__fexcess_precision_standard+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -fexcess-precision=standard" >&5 +printf %s "checking whether the cross-compiler supports -fexcess-precision=standard... " >&6; } +if test ${ac_cv_crosscflags__fexcess_precision_standard+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10685,31 +12508,34 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__fexcess_precision_standard=yes -else +else $as_nop ac_cv_crosscflags__fexcess_precision_standard=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__fexcess_precision_standard" >&5 -$as_echo "$ac_cv_crosscflags__fexcess_precision_standard" >&6; } -if test "x$ac_cv_crosscflags__fexcess_precision_standard" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__fexcess_precision_standard" >&5 +printf "%s\n" "$ac_cv_crosscflags__fexcess_precision_standard" >&6; } +if test "x$ac_cv_crosscflags__fexcess_precision_standard" = xyes +then : EXCESS_PRECISION_CFLAGS="-fexcess-precision=standard"
fi
if test "x$enable_werror" = "xyes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Werror" >&5 -$as_echo_n "checking whether the cross-compiler supports -Werror... " >&6; } -if ${ac_cv_crosscflags__Werror+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Werror" >&5 +printf %s "checking whether the cross-compiler supports -Werror... " >&6; } +if test ${ac_cv_crosscflags__Werror+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10720,30 +12546,33 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Werror=yes -else +else $as_nop ac_cv_crosscflags__Werror=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Werror" >&5 -$as_echo "$ac_cv_crosscflags__Werror" >&6; } -if test "x$ac_cv_crosscflags__Werror" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Werror" >&5 +printf "%s\n" "$ac_cv_crosscflags__Werror" >&6; } +if test "x$ac_cv_crosscflags__Werror" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Werror" fi fi if test "x$enable_build_id" = "xyes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wl,--build-id" >&5 -$as_echo_n "checking whether the cross-compiler supports -Wl,--build-id... " >&6; } -if ${ac_cv_crosscflags__Wl___build_id+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wl,--build-id" >&5 +printf %s "checking whether the cross-compiler supports -Wl,--build-id... " >&6; } +if test ${ac_cv_crosscflags__Wl___build_id+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10754,20 +12583,22 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wl___build_id=yes -else +else $as_nop ac_cv_crosscflags__Wl___build_id=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wl___build_id" >&5 -$as_echo "$ac_cv_crosscflags__Wl___build_id" >&6; } -if test "x$ac_cv_crosscflags__Wl___build_id" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wl___build_id" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wl___build_id" >&6; } +if test "x$ac_cv_crosscflags__Wl___build_id" = xyes +then : CROSSCFLAGS="$CROSSCFLAGS -Wl,--build-id" CROSSLDFLAGS="$CROSSLDFLAGS -Wl,--build-id" fi @@ -10777,7 +12608,8 @@ fi CC="$ac_save_CC" fi fi -if test "x$CROSSTARGET" = "x"; then : +if test "x$CROSSTARGET" = "x" +then : case "x$with_mingw" in x) as_fn_append wine_notices "|MinGW compiler not found, cross-compiling PE files won't be supported." ;; xno) ;; @@ -10791,14 +12623,16 @@ fi if test "$ac_cv_header_pthread_h" = "yes" then ac_fn_c_check_func "$LINENO" "pthread_create" "ac_cv_func_pthread_create" -if test "x$ac_cv_func_pthread_create" = xyes; then : - -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lpthread" >&5 -$as_echo_n "checking for pthread_create in -lpthread... " >&6; } -if ${ac_cv_lib_pthread_pthread_create+:} false; then : - $as_echo_n "(cached) " >&6 -else +if test "x$ac_cv_func_pthread_create" = xyes +then : + +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lpthread" >&5 +printf %s "checking for pthread_create in -lpthread... " >&6; } +if test ${ac_cv_lib_pthread_pthread_create+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lpthread $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -10806,31 +12640,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif + builtin and then its argument prototype would still apply. */ char pthread_create (); int -main () +main (void) { return pthread_create (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_pthread_pthread_create=yes -else +else $as_nop ac_cv_lib_pthread_pthread_create=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_create" >&5 -$as_echo "$ac_cv_lib_pthread_pthread_create" >&6; } -if test "x$ac_cv_lib_pthread_pthread_create" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_create" >&5 +printf "%s\n" "$ac_cv_lib_pthread_pthread_create" >&6; } +if test "x$ac_cv_lib_pthread_pthread_create" = xyes +then : PTHREAD_LIBS="-lpthread"
fi @@ -10838,7 +12671,8 @@ fi fi
fi -if test "x$ac_cv_func_pthread_create" != xyes -a "x$PTHREAD_LIBS" = x; then : +if test "x$ac_cv_func_pthread_create" != xyes -a "x$PTHREAD_LIBS" = x +then : case "x$with_pthread" in xno) ;; *) as_fn_error $? "pthread ${notice_platform}development files not found. @@ -10849,12 +12683,146 @@ esac fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for X" >&5 -$as_echo_n "checking for X... " >&6; } +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 +printf %s "checking how to run the C preprocessor... " >&6; } +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then + if test ${ac_cv_prog_CPP+y} +then : + printf %s "(cached) " >&6 +else $as_nop + # Double quotes because $CC needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" cpp /lib/cpp + do + ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <limits.h> + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO" +then : + +else $as_nop + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <ac_nonexistent.h> +_ACEOF +if ac_fn_c_try_cpp "$LINENO" +then : + # Broken: success on invalid input. +continue +else $as_nop + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok +then : + break +fi + + done + ac_cv_prog_CPP=$CPP + +fi + CPP=$ac_cv_prog_CPP +else + ac_cv_prog_CPP=$CPP +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 +printf "%s\n" "$CPP" >&6; } +ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <limits.h> + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO" +then : + +else $as_nop + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <ac_nonexistent.h> +_ACEOF +if ac_fn_c_try_cpp "$LINENO" +then : + # Broken: success on invalid input. +continue +else $as_nop + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok +then : + +else $as_nop + { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 +printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;} +as_fn_error $? "C preprocessor "$CPP" fails sanity check +See `config.log' for more details" "$LINENO" 5; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for X" >&5 +printf %s "checking for X... " >&6; }
# Check whether --with-x was given. -if test "${with_x+set}" = set; then : +if test ${with_x+y} +then : withval=$with_x; fi
@@ -10865,12 +12833,41 @@ if test "x$with_x" = xno; then else case $x_includes,$x_libraries in #( *'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #( - *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then : - $as_echo_n "(cached) " >&6 -else + *,NONE | NONE,*) if test ${ac_cv_have_x+y} +then : + printf %s "(cached) " >&6 +else $as_nop # One or both of the vars are not set, and there is no cached value. -ac_x_includes=no ac_x_libraries=no -rm -f -r conftest.dir +ac_x_includes=no +ac_x_libraries=no +# Do we need to do anything special at all? +ac_save_LIBS=$LIBS +LIBS="-lX11 $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <X11/Xlib.h> +int +main (void) +{ +XrmInitialize () + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO" +then : + # We can compile and link X programs with no special options. + ac_x_includes= + ac_x_libraries= +fi +rm -f core conftest.err conftest.$ac_objext conftest.beam \ + conftest$ac_exeext conftest.$ac_ext +LIBS="$ac_save_LIBS" +# If that didn't work, only try xmkmf and file system searches +# for native compilation. +if test x"$ac_x_includes" = xno && test "$cross_compiling" = no +then : + rm -f -r conftest.dir if mkdir conftest.dir; then cd conftest.dir cat >Imakefile <<'_ACEOF' @@ -10909,7 +12906,7 @@ _ACEOF rm -f -r conftest.dir fi
-# Standard set of common directories for X headers. + # Standard set of common directories for X headers. # Check X11 before X11Rn because it is often a symlink to the current release. ac_x_header_dirs=' /usr/X11/include @@ -10936,6 +12933,8 @@ ac_x_header_dirs=' /usr/local/include/X11R5 /usr/local/include/X11R4
+/opt/X11/include + /usr/X386/include /usr/x386/include /usr/XFree86/include/X11 @@ -10957,10 +12956,11 @@ if test "$ac_x_includes" = no; then /* end confdefs.h. */ #include <X11/Xlib.h> _ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : +if ac_fn_c_try_cpp "$LINENO" +then : # We can compile using X headers with no special include directory. ac_x_includes= -else +else $as_nop for ac_dir in $ac_x_header_dirs; do if test -r "$ac_dir/X11/Xlib.h"; then ac_x_includes=$ac_dir @@ -10981,20 +12981,21 @@ if test "$ac_x_libraries" = no; then /* end confdefs.h. */ #include <X11/Xlib.h> int -main () +main (void) { XrmInitialize () ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : LIBS=$ac_save_LIBS # We can link X programs with no special library path. ac_x_libraries= -else +else $as_nop LIBS=$ac_save_LIBS -for ac_dir in `$as_echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` +for ac_dir in `printf "%s\n" "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` do # Don't even attempt the hair of trying to link an X program! for ac_extension in a so sl dylib la dll; do @@ -11005,19 +13006,21 @@ do done done fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi # $ac_x_libraries = no
+fi +# Record the results. case $ac_x_includes,$ac_x_libraries in #( - no,* | *,no | *'*) + no,* | *,no | *'*) : # Didn't find X, or a directory has "'" in its name. - ac_cv_have_x="have_x=no";; #( - *) + ac_cv_have_x="have_x=no" ;; #( + *) : # Record where we found X for the cache. ac_cv_have_x="have_x=yes\ ac_x_includes='$ac_x_includes'\ - ac_x_libraries='$ac_x_libraries'" + ac_x_libraries='$ac_x_libraries'" ;; esac fi ;; #( @@ -11027,8 +13030,8 @@ fi fi # $with_x != no
if test "$have_x" != yes; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_x" >&5 -$as_echo "$have_x" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $have_x" >&5 +printf "%s\n" "$have_x" >&6; } no_x=yes else # If each of the values was on the command line, it overrides each guess. @@ -11038,14 +13041,14 @@ else ac_cv_have_x="have_x=yes\ ac_x_includes='$x_includes'\ ac_x_libraries='$x_libraries'" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: libraries $x_libraries, headers $x_includes" >&5 -$as_echo "libraries $x_libraries, headers $x_includes" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: libraries $x_libraries, headers $x_includes" >&5 +printf "%s\n" "libraries $x_libraries, headers $x_includes" >&6; } fi
if test "$no_x" = yes; then # Not all programs may use this symbol, but it does not hurt to define it.
-$as_echo "#define X_DISPLAY_MISSING 1" >>confdefs.h +printf "%s\n" "#define X_DISPLAY_MISSING 1" >>confdefs.h
X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS= else @@ -11058,8 +13061,8 @@ else X_LIBS="$X_LIBS -L$x_libraries" # For Solaris; some versions of Sun CC require a space after -R and # others require no space. Words are not sufficient . . . . - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -R must be followed by a space" >&5 -$as_echo_n "checking whether -R must be followed by a space... " >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether -R must be followed by a space" >&5 +printf %s "checking whether -R must be followed by a space... " >&6; } ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" ac_xsave_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes @@ -11067,42 +13070,44 @@ $as_echo_n "checking whether -R must be followed by a space... " >&6; } /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } +if ac_fn_c_try_link "$LINENO" +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } X_LIBS="$X_LIBS -R$x_libraries" -else +else $as_nop LIBS="$ac_xsave_LIBS -R $x_libraries" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } +if ac_fn_c_try_link "$LINENO" +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +printf "%s\n" "yes" >&6; } X_LIBS="$X_LIBS -R $x_libraries" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: neither works" >&5 -$as_echo "neither works" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: neither works" >&5 +printf "%s\n" "neither works" >&6; } fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext ac_c_werror_flag=$ac_xsave_c_werror_flag LIBS=$ac_xsave_LIBS @@ -11125,26 +13130,25 @@ rm -f core conftest.err conftest.$ac_objext \ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XOpenDisplay (); int -main () +main (void) { return XOpenDisplay (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then :
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5 -$as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; } -if ${ac_cv_lib_dnet_dnet_ntoa+:} false; then : - $as_echo_n "(cached) " >&6 -else +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5 +printf %s "checking for dnet_ntoa in -ldnet... " >&6; } +if test ${ac_cv_lib_dnet_dnet_ntoa+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11153,39 +13157,39 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char dnet_ntoa (); int -main () +main (void) { return dnet_ntoa (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_dnet_dnet_ntoa=yes -else +else $as_nop ac_cv_lib_dnet_dnet_ntoa=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 -$as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; } -if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +printf "%s\n" "$ac_cv_lib_dnet_dnet_ntoa" >&6; } +if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes +then : X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" fi
if test $ac_cv_lib_dnet_dnet_ntoa = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5 -$as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; } -if ${ac_cv_lib_dnet_stub_dnet_ntoa+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5 +printf %s "checking for dnet_ntoa in -ldnet_stub... " >&6; } +if test ${ac_cv_lib_dnet_stub_dnet_ntoa+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11194,36 +13198,35 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char dnet_ntoa (); int -main () +main (void) { return dnet_ntoa (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_dnet_stub_dnet_ntoa=yes -else +else $as_nop ac_cv_lib_dnet_stub_dnet_ntoa=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 -$as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } -if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +printf "%s\n" "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } +if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes +then : X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" fi
fi fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS="$ac_xsave_LIBS"
@@ -11236,16 +13239,18 @@ rm -f core conftest.err conftest.$ac_objext \ # The functions gethostbyname, getservbyname, and inet_addr are # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname" -if test "x$ac_cv_func_gethostbyname" = xyes; then : +if test "x$ac_cv_func_gethostbyname" = xyes +then :
fi
if test $ac_cv_func_gethostbyname = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5 -$as_echo_n "checking for gethostbyname in -lnsl... " >&6; } -if ${ac_cv_lib_nsl_gethostbyname+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5 +printf %s "checking for gethostbyname in -lnsl... " >&6; } +if test ${ac_cv_lib_nsl_gethostbyname+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11254,39 +13259,39 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gethostbyname (); int -main () +main (void) { return gethostbyname (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_nsl_gethostbyname=yes -else +else $as_nop ac_cv_lib_nsl_gethostbyname=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5 -$as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } -if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5 +printf "%s\n" "$ac_cv_lib_nsl_gethostbyname" >&6; } +if test "x$ac_cv_lib_nsl_gethostbyname" = xyes +then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" fi
if test $ac_cv_lib_nsl_gethostbyname = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5 -$as_echo_n "checking for gethostbyname in -lbsd... " >&6; } -if ${ac_cv_lib_bsd_gethostbyname+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5 +printf %s "checking for gethostbyname in -lbsd... " >&6; } +if test ${ac_cv_lib_bsd_gethostbyname+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11295,30 +13300,29 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gethostbyname (); int -main () +main (void) { return gethostbyname (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_bsd_gethostbyname=yes -else +else $as_nop ac_cv_lib_bsd_gethostbyname=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5 -$as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; } -if test "x$ac_cv_lib_bsd_gethostbyname" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5 +printf "%s\n" "$ac_cv_lib_bsd_gethostbyname" >&6; } +if test "x$ac_cv_lib_bsd_gethostbyname" = xyes +then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" fi
@@ -11333,16 +13337,18 @@ fi # must be given before -lnsl if both are needed. We assume that # if connect needs -lnsl, so does gethostbyname. ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect" -if test "x$ac_cv_func_connect" = xyes; then : +if test "x$ac_cv_func_connect" = xyes +then :
fi
if test $ac_cv_func_connect = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5 -$as_echo_n "checking for connect in -lsocket... " >&6; } -if ${ac_cv_lib_socket_connect+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5 +printf %s "checking for connect in -lsocket... " >&6; } +if test ${ac_cv_lib_socket_connect+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11351,30 +13357,29 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char connect (); int -main () +main (void) { return connect (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_socket_connect=yes -else +else $as_nop ac_cv_lib_socket_connect=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5 -$as_echo "$ac_cv_lib_socket_connect" >&6; } -if test "x$ac_cv_lib_socket_connect" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5 +printf "%s\n" "$ac_cv_lib_socket_connect" >&6; } +if test "x$ac_cv_lib_socket_connect" = xyes +then : X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" fi
@@ -11382,16 +13387,18 @@ fi
# Guillermo Gomez says -lposix is necessary on A/UX. ac_fn_c_check_func "$LINENO" "remove" "ac_cv_func_remove" -if test "x$ac_cv_func_remove" = xyes; then : +if test "x$ac_cv_func_remove" = xyes +then :
fi
if test $ac_cv_func_remove = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5 -$as_echo_n "checking for remove in -lposix... " >&6; } -if ${ac_cv_lib_posix_remove+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5 +printf %s "checking for remove in -lposix... " >&6; } +if test ${ac_cv_lib_posix_remove+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11400,30 +13407,29 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char remove (); int -main () +main (void) { return remove (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_posix_remove=yes -else +else $as_nop ac_cv_lib_posix_remove=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5 -$as_echo "$ac_cv_lib_posix_remove" >&6; } -if test "x$ac_cv_lib_posix_remove" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5 +printf "%s\n" "$ac_cv_lib_posix_remove" >&6; } +if test "x$ac_cv_lib_posix_remove" = xyes +then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" fi
@@ -11431,16 +13437,18 @@ fi
# BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. ac_fn_c_check_func "$LINENO" "shmat" "ac_cv_func_shmat" -if test "x$ac_cv_func_shmat" = xyes; then : +if test "x$ac_cv_func_shmat" = xyes +then :
fi
if test $ac_cv_func_shmat = no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5 -$as_echo_n "checking for shmat in -lipc... " >&6; } -if ${ac_cv_lib_ipc_shmat+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5 +printf %s "checking for shmat in -lipc... " >&6; } +if test ${ac_cv_lib_ipc_shmat+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11449,30 +13457,29 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char shmat (); int -main () +main (void) { return shmat (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_ipc_shmat=yes -else +else $as_nop ac_cv_lib_ipc_shmat=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5 -$as_echo "$ac_cv_lib_ipc_shmat" >&6; } -if test "x$ac_cv_lib_ipc_shmat" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5 +printf "%s\n" "$ac_cv_lib_ipc_shmat" >&6; } +if test "x$ac_cv_lib_ipc_shmat" = xyes +then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" fi
@@ -11488,11 +13495,12 @@ fi # These have to be linked with before -lX11, unlike the other # libraries we check for below, so use a different variable. # John Interrante, Karl Berry - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5 -$as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; } -if ${ac_cv_lib_ICE_IceConnectionNumber+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5 +printf %s "checking for IceConnectionNumber in -lICE... " >&6; } +if test ${ac_cv_lib_ICE_IceConnectionNumber+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11501,30 +13509,29 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char IceConnectionNumber (); int -main () +main (void) { return IceConnectionNumber (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_ICE_IceConnectionNumber=yes -else +else $as_nop ac_cv_lib_ICE_IceConnectionNumber=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 -$as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; } -if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +printf "%s\n" "$ac_cv_lib_ICE_IceConnectionNumber" >&6; } +if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes +then : X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" fi
@@ -11538,11 +13545,12 @@ then ac_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $X_CFLAGS"
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lX11" >&5 -$as_echo_n "checking for -lX11... " >&6; } -if ${ac_cv_lib_soname_X11+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lX11" >&5 +printf %s "checking for -lX11... " >&6; } +if test ${ac_cv_lib_soname_X11+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lX11 $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11551,146 +13559,292 @@ LIBS="-lX11 $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XCreateWindow (); int -main () +main (void) { return XCreateWindow (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_X11=`$ac_cv_path_LDD conftest.exe | grep "X11" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_X11=`$OTOOL -L conftest$ac_exeext | grep "libX11\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libX11.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_X11=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libX11\.$LIBEXT" | sed -e "s/^.*\[\(libX11\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_X11:+false} :; then : + if ${ac_cv_lib_soname_X11:+false} : +then : ac_cv_lib_soname_X11=`$LDD conftest$ac_exeext | grep "libX11\.$LIBEXT" | sed -e "s/^.*(libX11.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_X11= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_X11:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_X11:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_X11" >&5 -$as_echo "$ac_cv_lib_soname_X11" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_X11" >&5 +printf "%s\n" "$ac_cv_lib_soname_X11" >&6; } + +printf "%s\n" "#define SONAME_LIBX11 "$ac_cv_lib_soname_X11"" >>confdefs.h + + +fi + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXext" >&5 +printf %s "checking for -lXext... " >&6; } +if test ${ac_cv_lib_soname_Xext+y} +then : + printf %s "(cached) " >&6 +else $as_nop + ac_check_soname_save_LIBS=$LIBS +LIBS="-lXext $X_LIBS -lX11 $X_EXTRA_LIBS $LIBS" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBX11 "$ac_cv_lib_soname_X11" +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +char XextCreateExtension (); +int +main (void) +{ +return XextCreateExtension (); + ; + return 0; +} _ACEOF +if ac_fn_c_try_link "$LINENO" +then : + case "$LIBEXT" in + dll) ac_cv_lib_soname_Xext=`$ac_cv_path_LDD conftest.exe | grep "Xext" | sed -e "s/dll.*/dll/"';2,$d'` ;; + dylib) ac_cv_lib_soname_Xext=`$OTOOL -L conftest$ac_exeext | grep "libXext\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXext.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; + *) ac_cv_lib_soname_Xext=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXext\.$LIBEXT" | sed -e "s/^.*\[\(libXext\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` + if ${ac_cv_lib_soname_Xext:+false} : +then : + ac_cv_lib_soname_Xext=`$LDD conftest$ac_exeext | grep "libXext\.$LIBEXT" | sed -e "s/^.*(libXext.$LIBEXT[^ ]*).*$/\1/"';2,$d'` +fi ;; + esac +else $as_nop + ac_cv_lib_soname_Xext= +fi +rm -f core conftest.err conftest.$ac_objext conftest.beam \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_soname_save_LIBS +fi +if ${ac_cv_lib_soname_Xext:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } + +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xext" >&5 +printf "%s\n" "$ac_cv_lib_soname_Xext" >&6; } + +printf "%s\n" "#define SONAME_LIBXEXT "$ac_cv_lib_soname_Xext"" >>confdefs.h + + X_LIBS="$X_LIBS -lXext" +fi + X_LIBS="$X_LIBS -lX11" + + ac_fn_c_check_header_compile "$LINENO" "X11/Xlib.h" "ac_cv_header_X11_Xlib_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_Xlib_h" = xyes +then : + printf "%s\n" "#define HAVE_X11_XLIB_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "X11/XKBlib.h" "ac_cv_header_X11_XKBlib_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_XKBlib_h" = xyes +then : + printf "%s\n" "#define HAVE_X11_XKBLIB_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "X11/Xutil.h" "ac_cv_header_X11_Xutil_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_Xutil_h" = xyes +then : + printf "%s\n" "#define HAVE_X11_XUTIL_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "X11/Xcursor/Xcursor.h" "ac_cv_header_X11_Xcursor_Xcursor_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_Xcursor_Xcursor_h" = xyes +then : + printf "%s\n" "#define HAVE_X11_XCURSOR_XCURSOR_H 1" >>confdefs.h + +fi +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/shape.h" "ac_cv_header_X11_extensions_shape_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_shape_h" = xyes +then : + printf "%s\n" "#define HAVE_X11_EXTENSIONS_SHAPE_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/XInput.h" "ac_cv_header_X11_extensions_XInput_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_XInput_h" = xyes +then : + printf "%s\n" "#define HAVE_X11_EXTENSIONS_XINPUT_H 1" >>confdefs.h
fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXext" >&5 -$as_echo_n "checking for -lXext... " >&6; } -if ${ac_cv_lib_soname_Xext+:} false; then : - $as_echo_n "(cached) " >&6 -else - ac_check_soname_save_LIBS=$LIBS -LIBS="-lXext $X_LIBS -lX11 $X_EXTRA_LIBS $LIBS" - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/XInput2.h" "ac_cv_header_X11_extensions_XInput2_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_XInput2_h" = xyes +then : + printf "%s\n" "#define HAVE_X11_EXTENSIONS_XINPUT2_H 1" >>confdefs.h
-/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" +fi +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/XShm.h" "ac_cv_header_X11_extensions_XShm_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> #endif -char XextCreateExtension (); -int -main () -{ -return XextCreateExtension (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - case "$LIBEXT" in - dll) ac_cv_lib_soname_Xext=`$ac_cv_path_LDD conftest.exe | grep "Xext" | sed -e "s/dll.*/dll/"';2,$d'` ;; - dylib) ac_cv_lib_soname_Xext=`$OTOOL -L conftest$ac_exeext | grep "libXext\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXext.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; - *) ac_cv_lib_soname_Xext=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXext\.$LIBEXT" | sed -e "s/^.*\[\(libXext\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_Xext:+false} :; then : - ac_cv_lib_soname_Xext=`$LDD conftest$ac_exeext | grep "libXext\.$LIBEXT" | sed -e "s/^.*(libXext.$LIBEXT[^ ]*).*$/\1/"';2,$d'` -fi ;; - esac -else - ac_cv_lib_soname_Xext= +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_XShm_h" = xyes +then : + printf "%s\n" "#define HAVE_X11_EXTENSIONS_XSHM_H 1" >>confdefs.h + fi -rm -f core conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - LIBS=$ac_check_soname_save_LIBS +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/Xcomposite.h" "ac_cv_header_X11_extensions_Xcomposite_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_Xcomposite_h" = xyes +then : + printf "%s\n" "#define HAVE_X11_EXTENSIONS_XCOMPOSITE_H 1" >>confdefs.h + fi -if ${ac_cv_lib_soname_Xext:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/Xfixes.h" "ac_cv_header_X11_extensions_Xfixes_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_Xfixes_h" = xyes +then : + printf "%s\n" "#define HAVE_X11_EXTENSIONS_XFIXES_H 1" >>confdefs.h
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xext" >&5 -$as_echo "$ac_cv_lib_soname_Xext" >&6; } +fi +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/Xinerama.h" "ac_cv_header_X11_extensions_Xinerama_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_Xinerama_h" = xyes +then : + printf "%s\n" "#define HAVE_X11_EXTENSIONS_XINERAMA_H 1" >>confdefs.h
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXEXT "$ac_cv_lib_soname_Xext" -_ACEOF +fi +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/Xrandr.h" "ac_cv_header_X11_extensions_Xrandr_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_Xrandr_h" = xyes +then : + printf "%s\n" "#define HAVE_X11_EXTENSIONS_XRANDR_H 1" >>confdefs.h
- X_LIBS="$X_LIBS -lXext" fi - X_LIBS="$X_LIBS -lX11" +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/Xrender.h" "ac_cv_header_X11_extensions_Xrender_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_Xrender_h" = xyes +then : + printf "%s\n" "#define HAVE_X11_EXTENSIONS_XRENDER_H 1" >>confdefs.h
- for ac_header in X11/Xlib.h \ - X11/XKBlib.h \ - X11/Xutil.h \ - X11/Xcursor/Xcursor.h \ - X11/extensions/shape.h \ - X11/extensions/XInput.h \ - X11/extensions/XInput2.h \ - X11/extensions/XShm.h \ - X11/extensions/Xcomposite.h \ - X11/extensions/Xfixes.h \ - X11/extensions/Xinerama.h \ - X11/extensions/Xrandr.h \ - X11/extensions/Xrender.h \ - X11/extensions/xf86vmode.h \ - X11/extensions/xf86vmproto.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#ifdef HAVE_X11_XLIB_H +fi +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/xf86vmode.h" "ac_cv_header_X11_extensions_xf86vmode_h" "#ifdef HAVE_X11_XLIB_H # include <X11/Xlib.h> #endif #ifdef HAVE_X11_XUTIL_H # include <X11/Xutil.h> #endif " -if eval test "x$"$as_ac_Header"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +if test "x$ac_cv_header_X11_extensions_xf86vmode_h" = xyes +then : + printf "%s\n" "#define HAVE_X11_EXTENSIONS_XF86VMODE_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/xf86vmproto.h" "ac_cv_header_X11_extensions_xf86vmproto_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_xf86vmproto_h" = xyes +then : + printf "%s\n" "#define HAVE_X11_EXTENSIONS_XF86VMPROTO_H 1" >>confdefs.h
-done +fi
if test "$ac_cv_header_X11_XKBlib_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XkbQueryExtension in -lX11" >&5 -$as_echo_n "checking for XkbQueryExtension in -lX11... " >&6; } -if ${ac_cv_lib_X11_XkbQueryExtension+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for XkbQueryExtension in -lX11" >&5 +printf %s "checking for XkbQueryExtension in -lX11... " >&6; } +if test ${ac_cv_lib_X11_XkbQueryExtension+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11699,32 +13853,31 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XkbQueryExtension (); int -main () +main (void) { return XkbQueryExtension (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_X11_XkbQueryExtension=yes -else +else $as_nop ac_cv_lib_X11_XkbQueryExtension=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_X11_XkbQueryExtension" >&5 -$as_echo "$ac_cv_lib_X11_XkbQueryExtension" >&6; } -if test "x$ac_cv_lib_X11_XkbQueryExtension" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_X11_XkbQueryExtension" >&5 +printf "%s\n" "$ac_cv_lib_X11_XkbQueryExtension" >&6; } +if test "x$ac_cv_lib_X11_XkbQueryExtension" = xyes +then :
-$as_echo "#define HAVE_XKB 1" >>confdefs.h +printf "%s\n" "#define HAVE_XKB 1" >>confdefs.h
fi
@@ -11732,11 +13885,12 @@ fi
if test "$ac_cv_header_X11_Xcursor_Xcursor_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXcursor" >&5 -$as_echo_n "checking for -lXcursor... " >&6; } -if ${ac_cv_lib_soname_Xcursor+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXcursor" >&5 +printf %s "checking for -lXcursor... " >&6; } +if test ${ac_cv_lib_soname_Xcursor+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXcursor $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11745,50 +13899,49 @@ LIBS="-lXcursor $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XcursorImageLoadCursor (); int -main () +main (void) { return XcursorImageLoadCursor (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xcursor=`$ac_cv_path_LDD conftest.exe | grep "Xcursor" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xcursor=`$OTOOL -L conftest$ac_exeext | grep "libXcursor\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXcursor.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xcursor=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXcursor\.$LIBEXT" | sed -e "s/^.*\[\(libXcursor\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_Xcursor:+false} :; then : + if ${ac_cv_lib_soname_Xcursor:+false} : +then : ac_cv_lib_soname_Xcursor=`$LDD conftest$ac_exeext | grep "libXcursor\.$LIBEXT" | sed -e "s/^.*(libXcursor.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xcursor= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xcursor:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xcursor:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xcursor" >&5 -$as_echo "$ac_cv_lib_soname_Xcursor" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xcursor" >&5 +printf "%s\n" "$ac_cv_lib_soname_Xcursor" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXCURSOR "$ac_cv_lib_soname_Xcursor" -_ACEOF +printf "%s\n" "#define SONAME_LIBXCURSOR "$ac_cv_lib_soname_Xcursor"" >>confdefs.h
fi fi - if test "x$ac_cv_lib_soname_Xcursor" = "x"; then : + if test "x$ac_cv_lib_soname_Xcursor" = "x" +then : case "x$with_xcursor" in x) as_fn_append wine_notices "|libxcursor ${notice_platform}development files not found, the Xcursor extension won't be supported." ;; xno) ;; @@ -11800,11 +13953,12 @@ fi
if test "$ac_cv_header_X11_extensions_XInput_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXi" >&5 -$as_echo_n "checking for -lXi... " >&6; } -if ${ac_cv_lib_soname_Xi+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXi" >&5 +printf %s "checking for -lXi... " >&6; } +if test ${ac_cv_lib_soname_Xi+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXi $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11813,50 +13967,49 @@ LIBS="-lXi $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XOpenDevice (); int -main () +main (void) { return XOpenDevice (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xi=`$ac_cv_path_LDD conftest.exe | grep "Xi" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xi=`$OTOOL -L conftest$ac_exeext | grep "libXi\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXi.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xi=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXi\.$LIBEXT" | sed -e "s/^.*\[\(libXi\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_Xi:+false} :; then : + if ${ac_cv_lib_soname_Xi:+false} : +then : ac_cv_lib_soname_Xi=`$LDD conftest$ac_exeext | grep "libXi\.$LIBEXT" | sed -e "s/^.*(libXi.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xi= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xi:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xi:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xi" >&5 -$as_echo "$ac_cv_lib_soname_Xi" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xi" >&5 +printf "%s\n" "$ac_cv_lib_soname_Xi" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXI "$ac_cv_lib_soname_Xi" -_ACEOF +printf "%s\n" "#define SONAME_LIBXI "$ac_cv_lib_soname_Xi"" >>confdefs.h
fi fi - if test "x$ac_cv_lib_soname_Xi" = "x"; then : + if test "x$ac_cv_lib_soname_Xi" = "x" +then : case "x$with_xinput" in x) as_fn_append wine_notices "|libxi ${notice_platform}development files not found, the Xinput extension won't be supported." ;; xno) ;; @@ -11868,7 +14021,8 @@ fi
if test "x$ac_cv_lib_soname_Xi" != x then - if test "$ac_cv_header_X11_extensions_XInput2_h" != "yes"; then : + if test "$ac_cv_header_X11_extensions_XInput2_h" != "yes" +then : case "x$with_xinput2" in x) as_fn_append wine_notices "|XInput2 headers not found, the XInput 2 extension won't be supported." ;; xno) ;; @@ -11881,11 +14035,12 @@ fi
if test "$ac_cv_header_X11_extensions_XShm_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XShmQueryExtension in -lXext" >&5 -$as_echo_n "checking for XShmQueryExtension in -lXext... " >&6; } -if ${ac_cv_lib_Xext_XShmQueryExtension+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for XShmQueryExtension in -lXext" >&5 +printf %s "checking for XShmQueryExtension in -lXext... " >&6; } +if test ${ac_cv_lib_Xext_XShmQueryExtension+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11894,37 +14049,37 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XShmQueryExtension (); int -main () +main (void) { return XShmQueryExtension (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_Xext_XShmQueryExtension=yes -else +else $as_nop ac_cv_lib_Xext_XShmQueryExtension=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_XShmQueryExtension" >&5 -$as_echo "$ac_cv_lib_Xext_XShmQueryExtension" >&6; } -if test "x$ac_cv_lib_Xext_XShmQueryExtension" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_XShmQueryExtension" >&5 +printf "%s\n" "$ac_cv_lib_Xext_XShmQueryExtension" >&6; } +if test "x$ac_cv_lib_Xext_XShmQueryExtension" = xyes +then :
-$as_echo "#define HAVE_LIBXXSHM 1" >>confdefs.h +printf "%s\n" "#define HAVE_LIBXXSHM 1" >>confdefs.h
fi
fi - if test "$ac_cv_lib_Xext_XShmQueryExtension" != "yes"; then : + if test "$ac_cv_lib_Xext_XShmQueryExtension" != "yes" +then : case "x$with_xshm" in x) as_fn_append wine_notices "|XShm ${notice_platform}development files not found, X Shared Memory won't be supported." ;; xno) ;; @@ -11936,11 +14091,12 @@ fi
if test "$ac_cv_header_X11_extensions_shape_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XShapeQueryExtension in -lXext" >&5 -$as_echo_n "checking for XShapeQueryExtension in -lXext... " >&6; } -if ${ac_cv_lib_Xext_XShapeQueryExtension+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for XShapeQueryExtension in -lXext" >&5 +printf %s "checking for XShapeQueryExtension in -lXext... " >&6; } +if test ${ac_cv_lib_Xext_XShapeQueryExtension+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11949,37 +14105,37 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XShapeQueryExtension (); int -main () +main (void) { return XShapeQueryExtension (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_Xext_XShapeQueryExtension=yes -else +else $as_nop ac_cv_lib_Xext_XShapeQueryExtension=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_XShapeQueryExtension" >&5 -$as_echo "$ac_cv_lib_Xext_XShapeQueryExtension" >&6; } -if test "x$ac_cv_lib_Xext_XShapeQueryExtension" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_XShapeQueryExtension" >&5 +printf "%s\n" "$ac_cv_lib_Xext_XShapeQueryExtension" >&6; } +if test "x$ac_cv_lib_Xext_XShapeQueryExtension" = xyes +then :
-$as_echo "#define HAVE_LIBXSHAPE 1" >>confdefs.h +printf "%s\n" "#define HAVE_LIBXSHAPE 1" >>confdefs.h
fi
fi - if test "$ac_cv_lib_Xext_XShapeQueryExtension" != "yes"; then : + if test "$ac_cv_lib_Xext_XShapeQueryExtension" != "yes" +then : case "x$with_xshape" in x) as_fn_append wine_notices "|XShape ${notice_platform}development files not found, XShape won't be supported." ;; xno) ;; @@ -11991,11 +14147,12 @@ fi
if test "$ac_cv_header_X11_extensions_xf86vmode_h" = "yes" -o "$ac_cv_header_X11_extensions_xf86vmproto_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXxf86vm" >&5 -$as_echo_n "checking for -lXxf86vm... " >&6; } -if ${ac_cv_lib_soname_Xxf86vm+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXxf86vm" >&5 +printf %s "checking for -lXxf86vm... " >&6; } +if test ${ac_cv_lib_soname_Xxf86vm+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXxf86vm $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12004,50 +14161,49 @@ LIBS="-lXxf86vm $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XF86VidModeQueryExtension (); int -main () +main (void) { return XF86VidModeQueryExtension (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xxf86vm=`$ac_cv_path_LDD conftest.exe | grep "Xxf86vm" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xxf86vm=`$OTOOL -L conftest$ac_exeext | grep "libXxf86vm\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXxf86vm.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xxf86vm=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXxf86vm\.$LIBEXT" | sed -e "s/^.*\[\(libXxf86vm\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_Xxf86vm:+false} :; then : + if ${ac_cv_lib_soname_Xxf86vm:+false} : +then : ac_cv_lib_soname_Xxf86vm=`$LDD conftest$ac_exeext | grep "libXxf86vm\.$LIBEXT" | sed -e "s/^.*(libXxf86vm.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xxf86vm= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xxf86vm:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xxf86vm:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xxf86vm" >&5 -$as_echo "$ac_cv_lib_soname_Xxf86vm" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xxf86vm" >&5 +printf "%s\n" "$ac_cv_lib_soname_Xxf86vm" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXXF86VM "$ac_cv_lib_soname_Xxf86vm" -_ACEOF +printf "%s\n" "#define SONAME_LIBXXF86VM "$ac_cv_lib_soname_Xxf86vm"" >>confdefs.h
fi fi - if test "x$ac_cv_lib_soname_Xxf86vm" = "x"; then : + if test "x$ac_cv_lib_soname_Xxf86vm" = "x" +then : case "x$with_xxf86vm" in x) as_fn_append wine_notices "|libXxf86vm ${notice_platform}development files not found, XFree86 Vidmode won't be supported." ;; xno) ;; @@ -12059,11 +14215,12 @@ fi
if test "$ac_cv_header_X11_extensions_Xrender_h" = "yes" -a "x$ac_cv_lib_soname_X11" != "x" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXrender" >&5 -$as_echo_n "checking for -lXrender... " >&6; } -if ${ac_cv_lib_soname_Xrender+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXrender" >&5 +printf %s "checking for -lXrender... " >&6; } +if test ${ac_cv_lib_soname_Xrender+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXrender $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12072,51 +14229,50 @@ LIBS="-lXrender $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XRenderQueryExtension (); int -main () +main (void) { return XRenderQueryExtension (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xrender=`$ac_cv_path_LDD conftest.exe | grep "Xrender" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xrender=`$OTOOL -L conftest$ac_exeext | grep "libXrender\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXrender.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xrender=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXrender\.$LIBEXT" | sed -e "s/^.*\[\(libXrender\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_Xrender:+false} :; then : + if ${ac_cv_lib_soname_Xrender:+false} : +then : ac_cv_lib_soname_Xrender=`$LDD conftest$ac_exeext | grep "libXrender\.$LIBEXT" | sed -e "s/^.*(libXrender.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xrender= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xrender:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xrender:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xrender" >&5 -$as_echo "$ac_cv_lib_soname_Xrender" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xrender" >&5 +printf "%s\n" "$ac_cv_lib_soname_Xrender" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXRENDER "$ac_cv_lib_soname_Xrender" -_ACEOF +printf "%s\n" "#define SONAME_LIBXRENDER "$ac_cv_lib_soname_Xrender"" >>confdefs.h
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XRenderSetPictureTransform in -lXrender" >&5 -$as_echo_n "checking for XRenderSetPictureTransform in -lXrender... " >&6; } -if ${ac_cv_lib_Xrender_XRenderSetPictureTransform+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for XRenderSetPictureTransform in -lXrender" >&5 +printf %s "checking for XRenderSetPictureTransform in -lXrender... " >&6; } +if test ${ac_cv_lib_Xrender_XRenderSetPictureTransform+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lXrender $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12125,40 +14281,40 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XRenderSetPictureTransform (); int -main () +main (void) { return XRenderSetPictureTransform (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_Xrender_XRenderSetPictureTransform=yes -else +else $as_nop ac_cv_lib_Xrender_XRenderSetPictureTransform=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xrender_XRenderSetPictureTransform" >&5 -$as_echo "$ac_cv_lib_Xrender_XRenderSetPictureTransform" >&6; } -if test "x$ac_cv_lib_Xrender_XRenderSetPictureTransform" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xrender_XRenderSetPictureTransform" >&5 +printf "%s\n" "$ac_cv_lib_Xrender_XRenderSetPictureTransform" >&6; } +if test "x$ac_cv_lib_Xrender_XRenderSetPictureTransform" = xyes +then :
-$as_echo "#define HAVE_XRENDERSETPICTURETRANSFORM 1" >>confdefs.h +printf "%s\n" "#define HAVE_XRENDERSETPICTURETRANSFORM 1" >>confdefs.h
fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XRenderCreateLinearGradient in -lXrender" >&5 -$as_echo_n "checking for XRenderCreateLinearGradient in -lXrender... " >&6; } -if ${ac_cv_lib_Xrender_XRenderCreateLinearGradient+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for XRenderCreateLinearGradient in -lXrender" >&5 +printf %s "checking for XRenderCreateLinearGradient in -lXrender... " >&6; } +if test ${ac_cv_lib_Xrender_XRenderCreateLinearGradient+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lXrender $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12167,39 +14323,39 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XRenderCreateLinearGradient (); int -main () +main (void) { return XRenderCreateLinearGradient (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_Xrender_XRenderCreateLinearGradient=yes -else +else $as_nop ac_cv_lib_Xrender_XRenderCreateLinearGradient=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xrender_XRenderCreateLinearGradient" >&5 -$as_echo "$ac_cv_lib_Xrender_XRenderCreateLinearGradient" >&6; } -if test "x$ac_cv_lib_Xrender_XRenderCreateLinearGradient" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xrender_XRenderCreateLinearGradient" >&5 +printf "%s\n" "$ac_cv_lib_Xrender_XRenderCreateLinearGradient" >&6; } +if test "x$ac_cv_lib_Xrender_XRenderCreateLinearGradient" = xyes +then :
-$as_echo "#define HAVE_XRENDERCREATELINEARGRADIENT 1" >>confdefs.h +printf "%s\n" "#define HAVE_XRENDERCREATELINEARGRADIENT 1" >>confdefs.h
fi
fi
fi - if test "x$ac_cv_lib_soname_Xrender" = "x"; then : + if test "x$ac_cv_lib_soname_Xrender" = "x" +then : case "x$with_xrender" in x) as_fn_append wine_warnings "|libxrender ${notice_platform}development files not found, XRender won't be supported." ;; xno) ;; @@ -12216,19 +14372,21 @@ fi #include <X11/Xlib.h> #include <X11/extensions/Xrandr.h> int -main () +main (void) { static typeof(XRRSetScreenConfigAndRate) * func; if (func) return 0; ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXrandr" >&5 -$as_echo_n "checking for -lXrandr... " >&6; } -if ${ac_cv_lib_soname_Xrandr+:} false; then : - $as_echo_n "(cached) " >&6 -else +if ac_fn_c_try_compile "$LINENO" +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXrandr" >&5 +printf %s "checking for -lXrandr... " >&6; } +if test ${ac_cv_lib_soname_Xrandr+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXrandr $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12237,71 +14395,71 @@ LIBS="-lXrandr $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XRRQueryExtension (); int -main () +main (void) { return XRRQueryExtension (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xrandr=`$ac_cv_path_LDD conftest.exe | grep "Xrandr" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xrandr=`$OTOOL -L conftest$ac_exeext | grep "libXrandr\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXrandr.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xrandr=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXrandr\.$LIBEXT" | sed -e "s/^.*\[\(libXrandr\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_Xrandr:+false} :; then : + if ${ac_cv_lib_soname_Xrandr:+false} : +then : ac_cv_lib_soname_Xrandr=`$LDD conftest$ac_exeext | grep "libXrandr\.$LIBEXT" | sed -e "s/^.*(libXrandr.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xrandr= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xrandr:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xrandr:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xrandr" >&5 -$as_echo "$ac_cv_lib_soname_Xrandr" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xrandr" >&5 +printf "%s\n" "$ac_cv_lib_soname_Xrandr" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXRANDR "$ac_cv_lib_soname_Xrandr" -_ACEOF +printf "%s\n" "#define SONAME_LIBXRANDR "$ac_cv_lib_soname_Xrandr"" >>confdefs.h
cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <X11/Xlib.h> #include <X11/extensions/Xrandr.h> int -main () +main (void) { static typeof(XRRGetProviderResources) *f; if (f) return 0; ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then :
-$as_echo "#define HAVE_XRRGETPROVIDERRESOURCES 1" >>confdefs.h +printf "%s\n" "#define HAVE_XRRGETPROVIDERRESOURCES 1" >>confdefs.h
-else +else $as_nop as_fn_append wine_notices "|libxrandr ${notice_platform}development files too old, XRandR display device handler won't be supported." fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi - if test "x$ac_cv_lib_soname_Xrandr" = "x"; then : + if test "x$ac_cv_lib_soname_Xrandr" = "x" +then : case "x$with_xrandr" in x) as_fn_append wine_notices "|libxrandr ${notice_platform}development files not found, XRandr won't be supported." ;; xno) ;; @@ -12318,19 +14476,21 @@ fi #include <X11/Xlib.h> #include <X11/extensions/Xfixes.h> int -main () +main (void) { static typeof(XFixesQueryVersion) * func; if (func) return 0; ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXfixes" >&5 -$as_echo_n "checking for -lXfixes... " >&6; } -if ${ac_cv_lib_soname_Xfixes+:} false; then : - $as_echo_n "(cached) " >&6 -else +if ac_fn_c_try_compile "$LINENO" +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXfixes" >&5 +printf %s "checking for -lXfixes... " >&6; } +if test ${ac_cv_lib_soname_Xfixes+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXfixes $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12339,52 +14499,51 @@ LIBS="-lXfixes $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XFixesQueryVersion (); int -main () +main (void) { return XFixesQueryVersion (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xfixes=`$ac_cv_path_LDD conftest.exe | grep "Xfixes" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xfixes=`$OTOOL -L conftest$ac_exeext | grep "libXfixes\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXfixes.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xfixes=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXfixes\.$LIBEXT" | sed -e "s/^.*\[\(libXfixes\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_Xfixes:+false} :; then : + if ${ac_cv_lib_soname_Xfixes:+false} : +then : ac_cv_lib_soname_Xfixes=`$LDD conftest$ac_exeext | grep "libXfixes\.$LIBEXT" | sed -e "s/^.*(libXfixes.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xfixes= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xfixes:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xfixes:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xfixes" >&5 -$as_echo "$ac_cv_lib_soname_Xfixes" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xfixes" >&5 +printf "%s\n" "$ac_cv_lib_soname_Xfixes" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXFIXES "$ac_cv_lib_soname_Xfixes" -_ACEOF +printf "%s\n" "#define SONAME_LIBXFIXES "$ac_cv_lib_soname_Xfixes"" >>confdefs.h
fi fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi - if test "x$ac_cv_lib_soname_Xfixes" = "x"; then : + if test "x$ac_cv_lib_soname_Xfixes" = "x" +then : case "x$with_xfixes" in x) as_fn_append wine_notices "|libxfixes ${notice_platform}development files not found, Xfixes won't be supported." ;; xno) ;; @@ -12401,19 +14560,21 @@ fi #include <X11/Xlib.h> #include <X11/extensions/Xinerama.h> int -main () +main (void) { static typeof(XineramaQueryScreens) * func; if (func) return 0; ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXinerama" >&5 -$as_echo_n "checking for -lXinerama... " >&6; } -if ${ac_cv_lib_soname_Xinerama+:} false; then : - $as_echo_n "(cached) " >&6 -else +if ac_fn_c_try_compile "$LINENO" +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXinerama" >&5 +printf %s "checking for -lXinerama... " >&6; } +if test ${ac_cv_lib_soname_Xinerama+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXinerama $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12422,52 +14583,51 @@ LIBS="-lXinerama $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XineramaQueryScreens (); int -main () +main (void) { return XineramaQueryScreens (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xinerama=`$ac_cv_path_LDD conftest.exe | grep "Xinerama" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xinerama=`$OTOOL -L conftest$ac_exeext | grep "libXinerama\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXinerama.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xinerama=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXinerama\.$LIBEXT" | sed -e "s/^.*\[\(libXinerama\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_Xinerama:+false} :; then : + if ${ac_cv_lib_soname_Xinerama:+false} : +then : ac_cv_lib_soname_Xinerama=`$LDD conftest$ac_exeext | grep "libXinerama\.$LIBEXT" | sed -e "s/^.*(libXinerama.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xinerama= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xinerama:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xinerama:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xinerama" >&5 -$as_echo "$ac_cv_lib_soname_Xinerama" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xinerama" >&5 +printf "%s\n" "$ac_cv_lib_soname_Xinerama" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXINERAMA "$ac_cv_lib_soname_Xinerama" -_ACEOF +printf "%s\n" "#define SONAME_LIBXINERAMA "$ac_cv_lib_soname_Xinerama"" >>confdefs.h
fi fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi - if test "x$ac_cv_lib_soname_Xinerama" = "x"; then : + if test "x$ac_cv_lib_soname_Xinerama" = "x" +then : case "x$with_xinerama" in x) as_fn_append wine_notices "|libxinerama ${notice_platform}development files not found, multi-monitor setups won't be supported." ;; xno) ;; @@ -12479,11 +14639,12 @@ fi
if test "$ac_cv_header_X11_extensions_Xcomposite_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXcomposite" >&5 -$as_echo_n "checking for -lXcomposite... " >&6; } -if ${ac_cv_lib_soname_Xcomposite+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXcomposite" >&5 +printf %s "checking for -lXcomposite... " >&6; } +if test ${ac_cv_lib_soname_Xcomposite+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXcomposite $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12492,50 +14653,49 @@ LIBS="-lXcomposite $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XCompositeRedirectWindow (); int -main () +main (void) { return XCompositeRedirectWindow (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xcomposite=`$ac_cv_path_LDD conftest.exe | grep "Xcomposite" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xcomposite=`$OTOOL -L conftest$ac_exeext | grep "libXcomposite\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXcomposite.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xcomposite=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXcomposite\.$LIBEXT" | sed -e "s/^.*\[\(libXcomposite\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_Xcomposite:+false} :; then : + if ${ac_cv_lib_soname_Xcomposite:+false} : +then : ac_cv_lib_soname_Xcomposite=`$LDD conftest$ac_exeext | grep "libXcomposite\.$LIBEXT" | sed -e "s/^.*(libXcomposite.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xcomposite= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xcomposite:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xcomposite:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xcomposite" >&5 -$as_echo "$ac_cv_lib_soname_Xcomposite" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xcomposite" >&5 +printf "%s\n" "$ac_cv_lib_soname_Xcomposite" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXCOMPOSITE "$ac_cv_lib_soname_Xcomposite" -_ACEOF +printf "%s\n" "#define SONAME_LIBXCOMPOSITE "$ac_cv_lib_soname_Xcomposite"" >>confdefs.h
fi fi - if test "x$ac_cv_lib_soname_Xcomposite" = "x"; then : + if test "x$ac_cv_lib_soname_Xcomposite" = "x" +then : case "x$with_xcomposite" in x) as_fn_append wine_notices "|libxcomposite ${notice_platform}development files not found, Xcomposite won't be supported." ;; xno) ;; @@ -12549,11 +14709,10 @@ fi #include <X11/Xlib.h> #endif " -if test "x$ac_cv_member_XICCallback_callback" = xyes; then : +if test "x$ac_cv_member_XICCallback_callback" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_XICCALLBACK_CALLBACK 1 -_ACEOF +printf "%s\n" "#define HAVE_XICCALLBACK_CALLBACK 1" >>confdefs.h
fi @@ -12561,11 +14720,10 @@ ac_fn_c_check_member "$LINENO" "XEvent" "xcookie" "ac_cv_member_XEvent_xcookie" #include <X11/Xlib.h> #endif " -if test "x$ac_cv_member_XEvent_xcookie" = xyes; then : +if test "x$ac_cv_member_XEvent_xcookie" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_XEVENT_XCOOKIE 1 -_ACEOF +printf "%s\n" "#define HAVE_XEVENT_XCOOKIE 1" >>confdefs.h
fi @@ -12575,11 +14733,12 @@ fi opengl_msg="" if test "x$with_opengl" != "xno" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lGL" >&5 -$as_echo_n "checking for -lGL... " >&6; } -if ${ac_cv_lib_soname_GL+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lGL" >&5 +printf %s "checking for -lGL... " >&6; } +if test ${ac_cv_lib_soname_GL+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lGL $X_LIBS -lm $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12588,42 +14747,43 @@ LIBS="-lGL $X_LIBS -lm $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char glXCreateContext (); int -main () +main (void) { return glXCreateContext (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_GL=`$ac_cv_path_LDD conftest.exe | grep "GL" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_GL=`$OTOOL -L conftest$ac_exeext | grep "libGL\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libGL.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_GL=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libGL\.$LIBEXT" | sed -e "s/^.*\[\(libGL\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_GL:+false} :; then : + if ${ac_cv_lib_soname_GL:+false} : +then : ac_cv_lib_soname_GL=`$LDD conftest$ac_exeext | grep "libGL\.$LIBEXT" | sed -e "s/^.*(libGL.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_GL= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_GL:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lGL" >&5 -$as_echo_n "checking for -lGL... " >&6; } -if ${ac_cv_lib_soname_GL+:} false; then : - $as_echo_n "(cached) " >&6 -else +if ${ac_cv_lib_soname_GL:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lGL" >&5 +printf %s "checking for -lGL... " >&6; } +if test ${ac_cv_lib_soname_GL+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lGL $X_LIBS -lm $X_EXTRA_LIBS -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12632,37 +14792,37 @@ LIBS="-lGL $X_LIBS -lm $X_EXTRA_LIBS -dylib_file /System/Library/Frameworks/Open /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char glXCreateContext (); int -main () +main (void) { return glXCreateContext (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_GL=`$ac_cv_path_LDD conftest.exe | grep "GL" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_GL=`$OTOOL -L conftest$ac_exeext | grep "libGL\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libGL.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_GL=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libGL\.$LIBEXT" | sed -e "s/^.*\[\(libGL\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_GL:+false} :; then : + if ${ac_cv_lib_soname_GL:+false} : +then : ac_cv_lib_soname_GL=`$LDD conftest$ac_exeext | grep "libGL\.$LIBEXT" | sed -e "s/^.*(libGL.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_GL= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_GL:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_GL:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } if test -f /usr/X11R6/lib/libGL.a then opengl_msg="/usr/X11R6/lib/libGL.a is present on your system. @@ -12670,33 +14830,30 @@ This probably prevents linking to OpenGL. Try deleting the file and restarting c else opengl_msg="No OpenGL library found on this system." fi -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_GL" >&5 -$as_echo "$ac_cv_lib_soname_GL" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_GL" >&5 +printf "%s\n" "$ac_cv_lib_soname_GL" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBGL "$ac_cv_lib_soname_GL" -_ACEOF +printf "%s\n" "#define SONAME_LIBGL "$ac_cv_lib_soname_GL"" >>confdefs.h
OPENGL_LIBS="-Xlinker -dylib_file -Xlinker /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -lGL" fi -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_GL" >&5 -$as_echo "$ac_cv_lib_soname_GL" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_GL" >&5 +printf "%s\n" "$ac_cv_lib_soname_GL" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBGL "$ac_cv_lib_soname_GL" -_ACEOF +printf "%s\n" "#define SONAME_LIBGL "$ac_cv_lib_soname_GL"" >>confdefs.h
OPENGL_LIBS="-lGL" fi if test "x$with_osmesa" != "xno" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lOSMesa" >&5 -$as_echo_n "checking for -lOSMesa... " >&6; } -if ${ac_cv_lib_soname_OSMesa+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lOSMesa" >&5 +printf %s "checking for -lOSMesa... " >&6; } +if test ${ac_cv_lib_soname_OSMesa+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lOSMesa $X_LIBS -lm $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12705,49 +14862,48 @@ LIBS="-lOSMesa $X_LIBS -lm $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char OSMesaGetProcAddress (); int -main () +main (void) { return OSMesaGetProcAddress (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_OSMesa=`$ac_cv_path_LDD conftest.exe | grep "OSMesa" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_OSMesa=`$OTOOL -L conftest$ac_exeext | grep "libOSMesa\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libOSMesa.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_OSMesa=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libOSMesa\.$LIBEXT" | sed -e "s/^.*\[\(libOSMesa\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_OSMesa:+false} :; then : + if ${ac_cv_lib_soname_OSMesa:+false} : +then : ac_cv_lib_soname_OSMesa=`$LDD conftest$ac_exeext | grep "libOSMesa\.$LIBEXT" | sed -e "s/^.*(libOSMesa.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_OSMesa= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_OSMesa:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_OSMesa:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_OSMesa" >&5 -$as_echo "$ac_cv_lib_soname_OSMesa" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_OSMesa" >&5 +printf "%s\n" "$ac_cv_lib_soname_OSMesa" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBOSMESA "$ac_cv_lib_soname_OSMesa" -_ACEOF +printf "%s\n" "#define SONAME_LIBOSMESA "$ac_cv_lib_soname_OSMesa"" >>confdefs.h
fi - if test "x$ac_cv_lib_soname_OSMesa" = "x"; then : + if test "x$ac_cv_lib_soname_OSMesa" = "x" +then : case "x$with_osmesa" in x) as_fn_append wine_notices "|libOSMesa ${notice_platform}development files not found (or too old), OpenGL rendering in bitmaps won't be supported." ;; xno) ;; @@ -12758,7 +14914,8 @@ esac fi fi fi - if test -n "$opengl_msg"; then : + if test -n "$opengl_msg" +then : case "x$with_opengl" in x) as_fn_append wine_warnings "|$opengl_msg OpenGL and Direct3D won't be supported." ;; @@ -12778,7 +14935,8 @@ fi
if test "$enable_wineandroid_drv$enable_winemac_drv" = "nono" then - if test "x$X_LIBS" = "x"; then : + if test "x$X_LIBS" = "x" +then : case "x$with_x" in xno) ;; *) as_fn_error $? "X ${notice_platform}development files not found. Wine will be built @@ -12789,7 +14947,8 @@ esac enable_winex11_drv=${enable_winex11_drv:-no} fi else - if test "x$X_LIBS" = "x"; then : + if test "x$X_LIBS" = "x" +then : case "x$with_x" in x) as_fn_append wine_notices "|X ${notice_platform}development files not found, the X11 driver won't be supported." ;; xno) ;; @@ -12802,11 +14961,12 @@ fi
if test "$ac_cv_header_CL_cl_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for clGetPlatformInfo in -lOpenCL" >&5 -$as_echo_n "checking for clGetPlatformInfo in -lOpenCL... " >&6; } -if ${ac_cv_lib_OpenCL_clGetPlatformInfo+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for clGetPlatformInfo in -lOpenCL" >&5 +printf %s "checking for clGetPlatformInfo in -lOpenCL... " >&6; } +if test ${ac_cv_lib_OpenCL_clGetPlatformInfo+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lOpenCL $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12815,36 +14975,36 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char clGetPlatformInfo (); int -main () +main (void) { return clGetPlatformInfo (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_OpenCL_clGetPlatformInfo=yes -else +else $as_nop ac_cv_lib_OpenCL_clGetPlatformInfo=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_OpenCL_clGetPlatformInfo" >&5 -$as_echo "$ac_cv_lib_OpenCL_clGetPlatformInfo" >&6; } -if test "x$ac_cv_lib_OpenCL_clGetPlatformInfo" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_OpenCL_clGetPlatformInfo" >&5 +printf "%s\n" "$ac_cv_lib_OpenCL_clGetPlatformInfo" >&6; } +if test "x$ac_cv_lib_OpenCL_clGetPlatformInfo" = xyes +then : OPENCL_LIBS="-lOpenCL"
fi
fi -if test "x$ac_cv_lib_OpenCL_clGetPlatformInfo" != xyes; then : +if test "x$ac_cv_lib_OpenCL_clGetPlatformInfo" != xyes +then : case "x$with_opencl" in x) as_fn_append wine_notices "|OpenCL ${notice_platform}development files not found, OpenCL won't be supported." ;; xno) ;; @@ -12856,11 +15016,12 @@ fi
if test "$ac_cv_header_pcap_pcap_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pcap_create in -lpcap" >&5 -$as_echo_n "checking for pcap_create in -lpcap... " >&6; } -if ${ac_cv_lib_pcap_pcap_create+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pcap_create in -lpcap" >&5 +printf %s "checking for pcap_create in -lpcap... " >&6; } +if test ${ac_cv_lib_pcap_pcap_create+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lpcap $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12869,36 +15030,36 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char pcap_create (); int -main () +main (void) { return pcap_create (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_pcap_pcap_create=yes -else +else $as_nop ac_cv_lib_pcap_pcap_create=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pcap_pcap_create" >&5 -$as_echo "$ac_cv_lib_pcap_pcap_create" >&6; } -if test "x$ac_cv_lib_pcap_pcap_create" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pcap_pcap_create" >&5 +printf "%s\n" "$ac_cv_lib_pcap_pcap_create" >&6; } +if test "x$ac_cv_lib_pcap_pcap_create" = xyes +then : PCAP_LIBS="-lpcap"
fi
fi -if test "x$ac_cv_lib_pcap_pcap_create" != xyes; then : +if test "x$ac_cv_lib_pcap_pcap_create" != xyes +then : case "x$with_pcap" in x) as_fn_append wine_notices "|pcap ${notice_platform}development files not found, wpcap won't be supported." ;; xno) ;; @@ -12911,43 +15072,54 @@ fi
if test "x$with_xml" != "xno" then - if ${XML2_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${XML2_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : XML2_CFLAGS=`$PKG_CONFIG --cflags libxml-2.0 2>/dev/null` fi fi test "$cross_compiling" = yes || XML2_CFLAGS=${XML2_CFLAGS:-`${XML2_CONFIG:-xml2-config} --cflags 2>/dev/null`} -if ${XML2_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${XML2_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : XML2_LIBS=`$PKG_CONFIG --libs libxml-2.0 2>/dev/null` fi fi test "$cross_compiling" = yes || XML2_LIBS=${XML2_LIBS:-`${XML2_CONFIG:-xml2-config} --libs 2>/dev/null`} XML2_LIBS=${XML2_LIBS:-"-lxml2"} -$as_echo "$as_me:${as_lineno-$LINENO}: libxml-2.0 cflags: $XML2_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libxml-2.0 libs: $XML2_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libxml-2.0 cflags: $XML2_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libxml-2.0 libs: $XML2_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $XML2_CFLAGS" -for ac_header in libxml/parser.h libxml/xmlsave.h libxml/SAX2.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test "x$"$as_ac_Header"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "libxml/parser.h" "ac_cv_header_libxml_parser_h" "$ac_includes_default" +if test "x$ac_cv_header_libxml_parser_h" = xyes +then : + printf "%s\n" "#define HAVE_LIBXML_PARSER_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "libxml/xmlsave.h" "ac_cv_header_libxml_xmlsave_h" "$ac_includes_default" +if test "x$ac_cv_header_libxml_xmlsave_h" = xyes +then : + printf "%s\n" "#define HAVE_LIBXML_XMLSAVE_H 1" >>confdefs.h
-done +fi +ac_fn_c_check_header_compile "$LINENO" "libxml/SAX2.h" "ac_cv_header_libxml_SAX2_h" "$ac_includes_default" +if test "x$ac_cv_header_libxml_SAX2_h" = xyes +then : + printf "%s\n" "#define HAVE_LIBXML_SAX2_H 1" >>confdefs.h + +fi
if test "$ac_cv_header_libxml_parser_h" = "yes" -a "$ac_cv_header_libxml_xmlsave_h" = "yes" -a "$ac_cv_header_libxml_SAX2_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlParseMemory in -lxml2" >&5 -$as_echo_n "checking for xmlParseMemory in -lxml2... " >&6; } -if ${ac_cv_lib_xml2_xmlParseMemory+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for xmlParseMemory in -lxml2" >&5 +printf %s "checking for xmlParseMemory in -lxml2... " >&6; } +if test ${ac_cv_lib_xml2_xmlParseMemory+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lxml2 $XML2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12956,42 +15128,42 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char xmlParseMemory (); int -main () +main (void) { return xmlParseMemory (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_xml2_xmlParseMemory=yes -else +else $as_nop ac_cv_lib_xml2_xmlParseMemory=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlParseMemory" >&5 -$as_echo "$ac_cv_lib_xml2_xmlParseMemory" >&6; } -if test "x$ac_cv_lib_xml2_xmlParseMemory" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlParseMemory" >&5 +printf "%s\n" "$ac_cv_lib_xml2_xmlParseMemory" >&6; } +if test "x$ac_cv_lib_xml2_xmlParseMemory" = xyes +then :
-$as_echo "#define HAVE_LIBXML2 1" >>confdefs.h +printf "%s\n" "#define HAVE_LIBXML2 1" >>confdefs.h
-else +else $as_nop XML2_LIBS="" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlReadMemory in -lxml2" >&5 -$as_echo_n "checking for xmlReadMemory in -lxml2... " >&6; } -if ${ac_cv_lib_xml2_xmlReadMemory+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for xmlReadMemory in -lxml2" >&5 +printf %s "checking for xmlReadMemory in -lxml2... " >&6; } +if test ${ac_cv_lib_xml2_xmlReadMemory+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lxml2 $XML2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13000,40 +15172,40 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char xmlReadMemory (); int -main () +main (void) { return xmlReadMemory (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_xml2_xmlReadMemory=yes -else +else $as_nop ac_cv_lib_xml2_xmlReadMemory=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlReadMemory" >&5 -$as_echo "$ac_cv_lib_xml2_xmlReadMemory" >&6; } -if test "x$ac_cv_lib_xml2_xmlReadMemory" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlReadMemory" >&5 +printf "%s\n" "$ac_cv_lib_xml2_xmlReadMemory" >&6; } +if test "x$ac_cv_lib_xml2_xmlReadMemory" = xyes +then :
-$as_echo "#define HAVE_XMLREADMEMORY 1" >>confdefs.h +printf "%s\n" "#define HAVE_XMLREADMEMORY 1" >>confdefs.h
fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlNewDocPI in -lxml2" >&5 -$as_echo_n "checking for xmlNewDocPI in -lxml2... " >&6; } -if ${ac_cv_lib_xml2_xmlNewDocPI+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for xmlNewDocPI in -lxml2" >&5 +printf %s "checking for xmlNewDocPI in -lxml2... " >&6; } +if test ${ac_cv_lib_xml2_xmlNewDocPI+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lxml2 $XML2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13042,40 +15214,40 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char xmlNewDocPI (); int -main () +main (void) { return xmlNewDocPI (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_xml2_xmlNewDocPI=yes -else +else $as_nop ac_cv_lib_xml2_xmlNewDocPI=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlNewDocPI" >&5 -$as_echo "$ac_cv_lib_xml2_xmlNewDocPI" >&6; } -if test "x$ac_cv_lib_xml2_xmlNewDocPI" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlNewDocPI" >&5 +printf "%s\n" "$ac_cv_lib_xml2_xmlNewDocPI" >&6; } +if test "x$ac_cv_lib_xml2_xmlNewDocPI" = xyes +then :
-$as_echo "#define HAVE_XMLNEWDOCPI 1" >>confdefs.h +printf "%s\n" "#define HAVE_XMLNEWDOCPI 1" >>confdefs.h
fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlSchemaSetParserStructuredErrors in -lxml2" >&5 -$as_echo_n "checking for xmlSchemaSetParserStructuredErrors in -lxml2... " >&6; } -if ${ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for xmlSchemaSetParserStructuredErrors in -lxml2" >&5 +printf %s "checking for xmlSchemaSetParserStructuredErrors in -lxml2... " >&6; } +if test ${ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lxml2 $XML2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13084,40 +15256,40 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char xmlSchemaSetParserStructuredErrors (); int -main () +main (void) { return xmlSchemaSetParserStructuredErrors (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors=yes -else +else $as_nop ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors" >&5 -$as_echo "$ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors" >&6; } -if test "x$ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors" >&5 +printf "%s\n" "$ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors" >&6; } +if test "x$ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors" = xyes +then :
-$as_echo "#define HAVE_XMLSCHEMASSETPARSERSTRUCTUREDERRORS 1" >>confdefs.h +printf "%s\n" "#define HAVE_XMLSCHEMASSETPARSERSTRUCTUREDERRORS 1" >>confdefs.h
fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlSchemaSetValidStructuredErrors in -lxml2" >&5 -$as_echo_n "checking for xmlSchemaSetValidStructuredErrors in -lxml2... " >&6; } -if ${ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for xmlSchemaSetValidStructuredErrors in -lxml2" >&5 +printf %s "checking for xmlSchemaSetValidStructuredErrors in -lxml2... " >&6; } +if test ${ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lxml2 $XML2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13126,40 +15298,40 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char xmlSchemaSetValidStructuredErrors (); int -main () +main (void) { return xmlSchemaSetValidStructuredErrors (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors=yes -else +else $as_nop ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors" >&5 -$as_echo "$ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors" >&6; } -if test "x$ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors" >&5 +printf "%s\n" "$ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors" >&6; } +if test "x$ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors" = xyes +then :
-$as_echo "#define HAVE_XMLSCHEMASSETVALIDSTRUCTUREDERRORS 1" >>confdefs.h +printf "%s\n" "#define HAVE_XMLSCHEMASSETVALIDSTRUCTUREDERRORS 1" >>confdefs.h
fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlFirstElementChild in -lxml2" >&5 -$as_echo_n "checking for xmlFirstElementChild in -lxml2... " >&6; } -if ${ac_cv_lib_xml2_xmlFirstElementChild+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for xmlFirstElementChild in -lxml2" >&5 +printf %s "checking for xmlFirstElementChild in -lxml2... " >&6; } +if test ${ac_cv_lib_xml2_xmlFirstElementChild+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lxml2 $XML2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13168,40 +15340,40 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char xmlFirstElementChild (); int -main () +main (void) { return xmlFirstElementChild (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_xml2_xmlFirstElementChild=yes -else +else $as_nop ac_cv_lib_xml2_xmlFirstElementChild=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlFirstElementChild" >&5 -$as_echo "$ac_cv_lib_xml2_xmlFirstElementChild" >&6; } -if test "x$ac_cv_lib_xml2_xmlFirstElementChild" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlFirstElementChild" >&5 +printf "%s\n" "$ac_cv_lib_xml2_xmlFirstElementChild" >&6; } +if test "x$ac_cv_lib_xml2_xmlFirstElementChild" = xyes +then :
-$as_echo "#define HAVE_XMLFIRSTELEMENTCHILD 1" >>confdefs.h +printf "%s\n" "#define HAVE_XMLFIRSTELEMENTCHILD 1" >>confdefs.h
fi
ac_fn_c_check_type "$LINENO" "xmlDocProperties" "ac_cv_type_xmlDocProperties" "#include <libxml/tree.h> " -if test "x$ac_cv_type_xmlDocProperties" = xyes; then : +if test "x$ac_cv_type_xmlDocProperties" = xyes +then :
-$as_echo "#define HAVE_XMLDOC_PROPERTIES 1" >>confdefs.h +printf "%s\n" "#define HAVE_XMLDOC_PROPERTIES 1" >>confdefs.h
fi
@@ -13212,7 +15384,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "$ac_cv_lib_xml2_xmlParseMemory" != "yes"; then : +if test "$ac_cv_lib_xml2_xmlParseMemory" != "yes" +then : case "x$with_xml" in x) as_fn_append wine_warnings "|libxml2 ${notice_platform}development files not found (or too old), XML won't be supported." ;; xno) ;; @@ -13224,46 +15397,54 @@ fi
if test "x$with_xslt" != "xno" then - if ${XSLT_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${XSLT_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : XSLT_CFLAGS=`$PKG_CONFIG --cflags libxslt 2>/dev/null` fi fi test "$cross_compiling" = yes || XSLT_CFLAGS=${XSLT_CFLAGS:-`${XSLT_CONFIG:-xslt-config} --cflags 2>/dev/null`} -if ${XSLT_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${XSLT_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : XSLT_LIBS=`$PKG_CONFIG --libs libxslt 2>/dev/null` fi fi test "$cross_compiling" = yes || XSLT_LIBS=${XSLT_LIBS:-`${XSLT_CONFIG:-xslt-config} --libs 2>/dev/null`} XSLT_LIBS=${XSLT_LIBS:-"-lxml2"} -$as_echo "$as_me:${as_lineno-$LINENO}: libxslt cflags: $XSLT_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libxslt libs: $XSLT_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libxslt cflags: $XSLT_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libxslt libs: $XSLT_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $XSLT_CFLAGS" -for ac_header in libxslt/pattern.h libxslt/transform.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#ifdef HAVE_LIBXSLT_PATTERN_H +ac_fn_c_check_header_compile "$LINENO" "libxslt/pattern.h" "ac_cv_header_libxslt_pattern_h" "#ifdef HAVE_LIBXSLT_PATTERN_H # include <libxslt/pattern.h> #endif " -if eval test "x$"$as_ac_Header"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +if test "x$ac_cv_header_libxslt_pattern_h" = xyes +then : + printf "%s\n" "#define HAVE_LIBXSLT_PATTERN_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "libxslt/transform.h" "ac_cv_header_libxslt_transform_h" "#ifdef HAVE_LIBXSLT_PATTERN_H +# include <libxslt/pattern.h> +#endif +" +if test "x$ac_cv_header_libxslt_transform_h" = xyes +then : + printf "%s\n" "#define HAVE_LIBXSLT_TRANSFORM_H 1" >>confdefs.h
-done +fi
if test "$ac_cv_header_libxslt_transform_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lxslt" >&5 -$as_echo_n "checking for -lxslt... " >&6; } -if ${ac_cv_lib_soname_xslt+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lxslt" >&5 +printf %s "checking for -lxslt... " >&6; } +if test ${ac_cv_lib_soname_xslt+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lxslt $XSLT_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13272,45 +15453,43 @@ LIBS="-lxslt $XSLT_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char xsltCompilePattern (); int -main () +main (void) { return xsltCompilePattern (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_xslt=`$ac_cv_path_LDD conftest.exe | grep "xslt" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_xslt=`$OTOOL -L conftest$ac_exeext | grep "libxslt\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libxslt.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_xslt=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libxslt\.$LIBEXT" | sed -e "s/^.*\[\(libxslt\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_xslt:+false} :; then : + if ${ac_cv_lib_soname_xslt:+false} : +then : ac_cv_lib_soname_xslt=`$LDD conftest$ac_exeext | grep "libxslt\.$LIBEXT" | sed -e "s/^.*(libxslt.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_xslt= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_xslt:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_xslt:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_xslt" >&5 -$as_echo "$ac_cv_lib_soname_xslt" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_xslt" >&5 +printf "%s\n" "$ac_cv_lib_soname_xslt" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXSLT "$ac_cv_lib_soname_xslt" -_ACEOF +printf "%s\n" "#define SONAME_LIBXSLT "$ac_cv_lib_soname_xslt"" >>confdefs.h
fi @@ -13320,7 +15499,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_xslt" = "x"; then : +if test "x$ac_cv_lib_soname_xslt" = "x" +then : case "x$with_xslt" in x) as_fn_append wine_warnings "|libxslt ${notice_platform}development files not found, xslt won't be supported." ;; xno) ;; @@ -13332,40 +15512,40 @@ fi
if test "x$with_inotify" != "xno" then - if ${INOTIFY_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${INOTIFY_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : INOTIFY_CFLAGS=`$PKG_CONFIG --cflags libinotify 2>/dev/null` fi fi
-if ${INOTIFY_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${INOTIFY_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : INOTIFY_LIBS=`$PKG_CONFIG --libs libinotify 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: libinotify cflags: $INOTIFY_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libinotify libs: $INOTIFY_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libinotify cflags: $INOTIFY_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libinotify libs: $INOTIFY_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $INOTIFY_CFLAGS" -for ac_header in sys/inotify.h -do : - ac_fn_c_check_header_mongrel "$LINENO" "sys/inotify.h" "ac_cv_header_sys_inotify_h" "$ac_includes_default" -if test "x$ac_cv_header_sys_inotify_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_SYS_INOTIFY_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "sys/inotify.h" "ac_cv_header_sys_inotify_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_inotify_h" = xyes +then : + printf "%s\n" "#define HAVE_SYS_INOTIFY_H 1" >>confdefs.h
fi
-done - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inotify_add_watch in -linotify" >&5 -$as_echo_n "checking for inotify_add_watch in -linotify... " >&6; } -if ${ac_cv_lib_inotify_inotify_add_watch+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for inotify_add_watch in -linotify" >&5 +printf %s "checking for inotify_add_watch in -linotify... " >&6; } +if test ${ac_cv_lib_inotify_inotify_add_watch+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-linotify $INOTIFY_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13374,39 +15554,39 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char inotify_add_watch (); int -main () +main (void) { return inotify_add_watch (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_inotify_inotify_add_watch=yes -else +else $as_nop ac_cv_lib_inotify_inotify_add_watch=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_inotify_inotify_add_watch" >&5 -$as_echo "$ac_cv_lib_inotify_inotify_add_watch" >&6; } -if test "x$ac_cv_lib_inotify_inotify_add_watch" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_inotify_inotify_add_watch" >&5 +printf "%s\n" "$ac_cv_lib_inotify_inotify_add_watch" >&6; } +if test "x$ac_cv_lib_inotify_inotify_add_watch" = xyes +then : : -else +else $as_nop INOTIFY_LIBS="" fi
CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "$ac_cv_header_sys_inotify_h" != "yes"; then : +if test "$ac_cv_header_sys_inotify_h" != "yes" +then : case "x$with_inotify" in x) as_fn_append wine_notices "|libinotify ${notice_platform}development files not found (or too old), filesystem change notifications won't be supported." ;; xno) ;; @@ -13418,30 +15598,36 @@ fi
if test "x$with_dbus" != "xno" then - if ${DBUS_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${DBUS_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : DBUS_CFLAGS=`$PKG_CONFIG --cflags dbus-1 2>/dev/null` fi fi
-if ${DBUS_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${DBUS_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : DBUS_LIBS=`$PKG_CONFIG --libs dbus-1 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: dbus-1 cflags: $DBUS_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: dbus-1 libs: $DBUS_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: dbus-1 cflags: $DBUS_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: dbus-1 libs: $DBUS_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $DBUS_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "dbus/dbus.h" "ac_cv_header_dbus_dbus_h" "$ac_includes_default" -if test "x$ac_cv_header_dbus_dbus_h" = xyes; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -ldbus-1" >&5 -$as_echo_n "checking for -ldbus-1... " >&6; } -if ${ac_cv_lib_soname_dbus_1+:} false; then : - $as_echo_n "(cached) " >&6 -else +ac_fn_c_check_header_compile "$LINENO" "dbus/dbus.h" "ac_cv_header_dbus_dbus_h" "$ac_includes_default" +if test "x$ac_cv_header_dbus_dbus_h" = xyes +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -ldbus-1" >&5 +printf %s "checking for -ldbus-1... " >&6; } +if test ${ac_cv_lib_soname_dbus_1+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-ldbus-1 $DBUS_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13450,58 +15636,56 @@ LIBS="-ldbus-1 $DBUS_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char dbus_connection_close (); int -main () +main (void) { return dbus_connection_close (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_dbus_1=`$ac_cv_path_LDD conftest.exe | grep "dbus-1" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_dbus_1=`$OTOOL -L conftest$ac_exeext | grep "libdbus-1\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libdbus-1.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_dbus_1=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libdbus-1\.$LIBEXT" | sed -e "s/^.*\[\(libdbus-1\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_dbus_1:+false} :; then : + if ${ac_cv_lib_soname_dbus_1:+false} : +then : ac_cv_lib_soname_dbus_1=`$LDD conftest$ac_exeext | grep "libdbus-1\.$LIBEXT" | sed -e "s/^.*(libdbus-1.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_dbus_1= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_dbus_1:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_dbus_1:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } DBUS_CFLAGS="" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_dbus_1" >&5 -$as_echo "$ac_cv_lib_soname_dbus_1" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_dbus_1" >&5 +printf "%s\n" "$ac_cv_lib_soname_dbus_1" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBDBUS_1 "$ac_cv_lib_soname_dbus_1" -_ACEOF +printf "%s\n" "#define SONAME_LIBDBUS_1 "$ac_cv_lib_soname_dbus_1"" >>confdefs.h
fi -else +else $as_nop DBUS_CFLAGS="" fi
- CPPFLAGS=$ac_save_CPPFLAGS
fi if test "x$ac_cv_lib_soname_dbus_1" = "x" -a \ - "x$ac_cv_header_DiskArbitration_DiskArbitration_h" != "xyes"; then : + "x$ac_cv_header_DiskArbitration_DiskArbitration_h" != "xyes" +then : case "x$with_dbus" in x) as_fn_append wine_notices "|libdbus ${notice_platform}development files not found, no dynamic device support." ;; xno) ;; @@ -13513,30 +15697,36 @@ fi
if test "x$with_hal" != "xno" -a "x$ac_cv_lib_soname_dbus_1" != x then - if ${HAL_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${HAL_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : HAL_CFLAGS=`$PKG_CONFIG --cflags hal 2>/dev/null` fi fi
-if ${HAL_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${HAL_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : HAL_LIBS=`$PKG_CONFIG --libs hal 2>/dev/null` fi fi
HAL_LIBS=${HAL_LIBS:-"-ldbus-1"} -$as_echo "$as_me:${as_lineno-$LINENO}: hal cflags: $HAL_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: hal libs: $HAL_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: hal cflags: $HAL_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: hal libs: $HAL_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $HAL_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "hal/libhal.h" "ac_cv_header_hal_libhal_h" "$ac_includes_default" -if test "x$ac_cv_header_hal_libhal_h" = xyes; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lhal" >&5 -$as_echo_n "checking for -lhal... " >&6; } -if ${ac_cv_lib_soname_hal+:} false; then : - $as_echo_n "(cached) " >&6 -else +ac_fn_c_check_header_compile "$LINENO" "hal/libhal.h" "ac_cv_header_hal_libhal_h" "$ac_includes_default" +if test "x$ac_cv_header_hal_libhal_h" = xyes +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lhal" >&5 +printf %s "checking for -lhal... " >&6; } +if test ${ac_cv_lib_soname_hal+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lhal $HAL_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13545,57 +15735,55 @@ LIBS="-lhal $HAL_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char libhal_ctx_new (); int -main () +main (void) { return libhal_ctx_new (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_hal=`$ac_cv_path_LDD conftest.exe | grep "hal" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_hal=`$OTOOL -L conftest$ac_exeext | grep "libhal\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libhal.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_hal=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libhal\.$LIBEXT" | sed -e "s/^.*\[\(libhal\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_hal:+false} :; then : + if ${ac_cv_lib_soname_hal:+false} : +then : ac_cv_lib_soname_hal=`$LDD conftest$ac_exeext | grep "libhal\.$LIBEXT" | sed -e "s/^.*(libhal.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_hal= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_hal:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_hal:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } HAL_CFLAGS="" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_hal" >&5 -$as_echo "$ac_cv_lib_soname_hal" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_hal" >&5 +printf "%s\n" "$ac_cv_lib_soname_hal" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBHAL "$ac_cv_lib_soname_hal" -_ACEOF +printf "%s\n" "#define SONAME_LIBHAL "$ac_cv_lib_soname_hal"" >>confdefs.h
fi -else +else $as_nop HAL_CFLAGS="" fi
- CPPFLAGS=$ac_save_CPPFLAGS
if test "x$ac_cv_lib_soname_hal" = "x" -a \ - "x$ac_cv_header_DiskArbitration_DiskArbitration_h" != "xyes"; then : + "x$ac_cv_header_DiskArbitration_DiskArbitration_h" != "xyes" +then : case "x$with_hal" in x) as_fn_append wine_notices "|libhal ${notice_platform}development files not found, no legacy dynamic device support." ;; xno) ;; @@ -13608,43 +15796,50 @@ fi
if test "x$with_gnutls" != "xno" then - if ${GNUTLS_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${GNUTLS_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : GNUTLS_CFLAGS=`$PKG_CONFIG --cflags gnutls 2>/dev/null` fi fi
-if ${GNUTLS_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${GNUTLS_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : GNUTLS_LIBS=`$PKG_CONFIG --libs gnutls 2>/dev/null` fi fi
GNUTLS_LIBS=${GNUTLS_LIBS:-"-lgnutls"} -$as_echo "$as_me:${as_lineno-$LINENO}: gnutls cflags: $GNUTLS_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: gnutls libs: $GNUTLS_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: gnutls cflags: $GNUTLS_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: gnutls libs: $GNUTLS_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $GNUTLS_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "gnutls/gnutls.h" "ac_cv_header_gnutls_gnutls_h" "$ac_includes_default" -if test "x$ac_cv_header_gnutls_gnutls_h" = xyes; then : +ac_fn_c_check_header_compile "$LINENO" "gnutls/gnutls.h" "ac_cv_header_gnutls_gnutls_h" "$ac_includes_default" +if test "x$ac_cv_header_gnutls_gnutls_h" = xyes +then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <gnutls/gnutls.h> #include <gnutls/crypto.h> int -main () +main (void) { static typeof(gnutls_mac_get_key_size) *func; if (func) return 0; ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lgnutls" >&5 -$as_echo_n "checking for -lgnutls... " >&6; } -if ${ac_cv_lib_soname_gnutls+:} false; then : - $as_echo_n "(cached) " >&6 -else +if ac_fn_c_try_compile "$LINENO" +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lgnutls" >&5 +printf %s "checking for -lgnutls... " >&6; } +if test ${ac_cv_lib_soname_gnutls+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lgnutls $GNUTLS_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13653,75 +15848,73 @@ LIBS="-lgnutls $GNUTLS_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gnutls_global_init (); int -main () +main (void) { return gnutls_global_init (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_gnutls=`$ac_cv_path_LDD conftest.exe | grep "gnutls" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_gnutls=`$OTOOL -L conftest$ac_exeext | grep "libgnutls\(-deb0\)\{0,1\}\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libgnutls\(-deb0\)\{0,1\}.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_gnutls=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libgnutls\(-deb0\)\{0,1\}\.$LIBEXT" | sed -e "s/^.*\[\(libgnutls\(-deb0\)\{0,1\}\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_gnutls:+false} :; then : + if ${ac_cv_lib_soname_gnutls:+false} : +then : ac_cv_lib_soname_gnutls=`$LDD conftest$ac_exeext | grep "libgnutls\(-deb0\)\{0,1\}\.$LIBEXT" | sed -e "s/^.*(libgnutls\(-deb0\)\{0,1\}.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_gnutls= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_gnutls:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_gnutls:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } GNUTLS_CFLAGS="" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_gnutls" >&5 -$as_echo "$ac_cv_lib_soname_gnutls" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_gnutls" >&5 +printf "%s\n" "$ac_cv_lib_soname_gnutls" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBGNUTLS "$ac_cv_lib_soname_gnutls" -_ACEOF +printf "%s\n" "#define SONAME_LIBGNUTLS "$ac_cv_lib_soname_gnutls"" >>confdefs.h
fi ac_wine_check_funcs_save_LIBS="$LIBS" LIBS="$LIBS $GNUTLS_LIBS" -for ac_func in gnutls_cipher_init + + for ac_func in gnutls_cipher_init do : ac_fn_c_check_func "$LINENO" "gnutls_cipher_init" "ac_cv_func_gnutls_cipher_init" -if test "x$ac_cv_func_gnutls_cipher_init" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_GNUTLS_CIPHER_INIT 1 -_ACEOF +if test "x$ac_cv_func_gnutls_cipher_init" = xyes +then : + printf "%s\n" "#define HAVE_GNUTLS_CIPHER_INIT 1" >>confdefs.h
-else +else $as_nop as_fn_append wine_notices "|libgnutls ${notice_platform}development files too old, bcrypt encryption won't be supported." fi -done
+done LIBS="$ac_wine_check_funcs_save_LIBS" fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -else +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext +else $as_nop GNUTLS_CFLAGS="" fi
- CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_gnutls" = "x"; then : +if test "x$ac_cv_lib_soname_gnutls" = "x" +then : case "x$with_gnutls" in x) as_fn_append wine_warnings "|libgnutls ${notice_platform}development files not found, no schannel support." ;; xno) ;; @@ -13733,30 +15926,36 @@ fi
if test "x$with_sane" != "xno" then - if ${SANE_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${SANE_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : SANE_CFLAGS=`$PKG_CONFIG --cflags sane-backends 2>/dev/null` fi fi test "$cross_compiling" = yes || SANE_CFLAGS=${SANE_CFLAGS:-`${SANE_CONFIG:-sane-config} --cflags 2>/dev/null`} -if ${SANE_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${SANE_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : SANE_LIBS=`$PKG_CONFIG --libs sane-backends 2>/dev/null` fi fi test "$cross_compiling" = yes || SANE_LIBS=${SANE_LIBS:-`${SANE_CONFIG:-sane-config} --ldflags 2>/dev/null`}
-$as_echo "$as_me:${as_lineno-$LINENO}: sane-backends cflags: $SANE_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: sane-backends libs: $SANE_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: sane-backends cflags: $SANE_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: sane-backends libs: $SANE_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $SANE_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "sane/sane.h" "ac_cv_header_sane_sane_h" "$ac_includes_default" -if test "x$ac_cv_header_sane_sane_h" = xyes; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lsane" >&5 -$as_echo_n "checking for -lsane... " >&6; } -if ${ac_cv_lib_soname_sane+:} false; then : - $as_echo_n "(cached) " >&6 -else +ac_fn_c_check_header_compile "$LINENO" "sane/sane.h" "ac_cv_header_sane_sane_h" "$ac_includes_default" +if test "x$ac_cv_header_sane_sane_h" = xyes +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lsane" >&5 +printf %s "checking for -lsane... " >&6; } +if test ${ac_cv_lib_soname_sane+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lsane $SANE_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13765,57 +15964,55 @@ LIBS="-lsane $SANE_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char sane_init (); int -main () +main (void) { return sane_init (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_sane=`$ac_cv_path_LDD conftest.exe | grep "sane" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_sane=`$OTOOL -L conftest$ac_exeext | grep "libsane\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libsane.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_sane=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libsane\.$LIBEXT" | sed -e "s/^.*\[\(libsane\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_sane:+false} :; then : + if ${ac_cv_lib_soname_sane:+false} : +then : ac_cv_lib_soname_sane=`$LDD conftest$ac_exeext | grep "libsane\.$LIBEXT" | sed -e "s/^.*(libsane.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_sane= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_sane:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_sane:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } SANE_CFLAGS="" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_sane" >&5 -$as_echo "$ac_cv_lib_soname_sane" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_sane" >&5 +printf "%s\n" "$ac_cv_lib_soname_sane" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBSANE "$ac_cv_lib_soname_sane" -_ACEOF +printf "%s\n" "#define SONAME_LIBSANE "$ac_cv_lib_soname_sane"" >>confdefs.h
fi -else +else $as_nop SANE_CFLAGS="" fi
- CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_sane" = "x"; then : +if test "x$ac_cv_lib_soname_sane" = "x" +then : case "x$with_sane" in x) as_fn_append wine_notices "|libsane ${notice_platform}development files not found, scanners won't be supported." ;; xno) ;; @@ -13827,30 +16024,36 @@ fi
if test "x$with_usb" != "xno" then - if ${USB_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${USB_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : USB_CFLAGS=`$PKG_CONFIG --cflags libusb-1.0 2>/dev/null` fi fi
-if ${USB_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${USB_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : USB_LIBS=`$PKG_CONFIG --libs libusb-1.0 2>/dev/null` fi fi
USB_LIBS=${USB_LIBS:-"-lusb-1.0"} -$as_echo "$as_me:${as_lineno-$LINENO}: libusb-1.0 cflags: $USB_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libusb-1.0 libs: $USB_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libusb-1.0 cflags: $USB_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libusb-1.0 libs: $USB_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $USB_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "libusb.h" "ac_cv_header_libusb_h" "$ac_includes_default" -if test "x$ac_cv_header_libusb_h" = xyes; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libusb_interrupt_event_handler in -lusb-1.0" >&5 -$as_echo_n "checking for libusb_interrupt_event_handler in -lusb-1.0... " >&6; } -if ${ac_cv_lib_usb_1_0_libusb_interrupt_event_handler+:} false; then : - $as_echo_n "(cached) " >&6 -else +ac_fn_c_check_header_compile "$LINENO" "libusb.h" "ac_cv_header_libusb_h" "$ac_includes_default" +if test "x$ac_cv_header_libusb_h" = xyes +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for libusb_interrupt_event_handler in -lusb-1.0" >&5 +printf %s "checking for libusb_interrupt_event_handler in -lusb-1.0... " >&6; } +if test ${ac_cv_lib_usb_1_0_libusb_interrupt_event_handler+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lusb-1.0 $USB_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13859,44 +16062,43 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char libusb_interrupt_event_handler (); int -main () +main (void) { return libusb_interrupt_event_handler (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_usb_1_0_libusb_interrupt_event_handler=yes -else +else $as_nop ac_cv_lib_usb_1_0_libusb_interrupt_event_handler=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" >&5 -$as_echo "$ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" >&6; } -if test "x$ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" >&5 +printf "%s\n" "$ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" >&6; } +if test "x$ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" = xyes +then : : -else +else $as_nop USB_LIBS="" fi
-else +else $as_nop USB_LIBS="" fi
- CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "$ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" != "yes"; then : +if test "$ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" != "yes" +then : case "x$with_usb" in x) as_fn_append wine_notices "|libusb-1.0 ${notice_platform}development files not found (or too old), USB devices won't be supported." ;; xno) ;; @@ -13908,11 +16110,12 @@ fi
if test "x$with_v4l2" != "xno" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lv4l2" >&5 -$as_echo_n "checking for -lv4l2... " >&6; } -if ${ac_cv_lib_soname_v4l2+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lv4l2" >&5 +printf %s "checking for -lv4l2... " >&6; } +if test ${ac_cv_lib_soname_v4l2+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lv4l2 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13921,50 +16124,49 @@ LIBS="-lv4l2 $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char v4l2_open (); int -main () +main (void) { return v4l2_open (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_v4l2=`$ac_cv_path_LDD conftest.exe | grep "v4l2" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_v4l2=`$OTOOL -L conftest$ac_exeext | grep "libv4l2\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libv4l2.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_v4l2=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libv4l2\.$LIBEXT" | sed -e "s/^.*\[\(libv4l2\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_v4l2:+false} :; then : + if ${ac_cv_lib_soname_v4l2:+false} : +then : ac_cv_lib_soname_v4l2=`$LDD conftest$ac_exeext | grep "libv4l2\.$LIBEXT" | sed -e "s/^.*(libv4l2.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_v4l2= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_v4l2:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_v4l2:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_v4l2" >&5 -$as_echo "$ac_cv_lib_soname_v4l2" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_v4l2" >&5 +printf "%s\n" "$ac_cv_lib_soname_v4l2" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBV4L2 "$ac_cv_lib_soname_v4l2" -_ACEOF +printf "%s\n" "#define SONAME_LIBV4L2 "$ac_cv_lib_soname_v4l2"" >>confdefs.h
fi fi -if test "x$ac_cv_lib_soname_v4l2" = "x"; then : +if test "x$ac_cv_lib_soname_v4l2" = "x" +then : case "x$with_v4l2" in x) as_fn_append wine_notices "|libv4l2 ${notice_platform}development files not found." ;; xno) ;; @@ -13976,30 +16178,36 @@ fi
if test "x$with_gphoto" != "xno" then - if ${GPHOTO2_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${GPHOTO2_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : GPHOTO2_CFLAGS=`$PKG_CONFIG --cflags libgphoto2 2>/dev/null` fi fi test "$cross_compiling" = yes || GPHOTO2_CFLAGS=${GPHOTO2_CFLAGS:-`${GPHOTO2_CONFIG:-gphoto2-config} --cflags 2>/dev/null`} -if ${GPHOTO2_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${GPHOTO2_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : GPHOTO2_LIBS=`$PKG_CONFIG --libs libgphoto2 2>/dev/null` fi fi test "$cross_compiling" = yes || GPHOTO2_LIBS=${GPHOTO2_LIBS:-`${GPHOTO2_CONFIG:-gphoto2-config} --libs 2>/dev/null`} GPHOTO2_LIBS=${GPHOTO2_LIBS:-"-lgphoto2"} -$as_echo "$as_me:${as_lineno-$LINENO}: libgphoto2 cflags: $GPHOTO2_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libgphoto2 libs: $GPHOTO2_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libgphoto2 cflags: $GPHOTO2_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libgphoto2 libs: $GPHOTO2_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $GPHOTO2_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "gphoto2-camera.h" "ac_cv_header_gphoto2_camera_h" "$ac_includes_default" -if test "x$ac_cv_header_gphoto2_camera_h" = xyes; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gp_camera_new in -lgphoto2" >&5 -$as_echo_n "checking for gp_camera_new in -lgphoto2... " >&6; } -if ${ac_cv_lib_gphoto2_gp_camera_new+:} false; then : - $as_echo_n "(cached) " >&6 -else +ac_fn_c_check_header_compile "$LINENO" "gphoto2-camera.h" "ac_cv_header_gphoto2_camera_h" "$ac_includes_default" +if test "x$ac_cv_header_gphoto2_camera_h" = xyes +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gp_camera_new in -lgphoto2" >&5 +printf %s "checking for gp_camera_new in -lgphoto2... " >&6; } +if test ${ac_cv_lib_gphoto2_gp_camera_new+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lgphoto2 $GPHOTO2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14008,68 +16216,72 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gp_camera_new (); int -main () +main (void) { return gp_camera_new (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_gphoto2_gp_camera_new=yes -else +else $as_nop ac_cv_lib_gphoto2_gp_camera_new=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gphoto2_gp_camera_new" >&5 -$as_echo "$ac_cv_lib_gphoto2_gp_camera_new" >&6; } -if test "x$ac_cv_lib_gphoto2_gp_camera_new" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gphoto2_gp_camera_new" >&5 +printf "%s\n" "$ac_cv_lib_gphoto2_gp_camera_new" >&6; } +if test "x$ac_cv_lib_gphoto2_gp_camera_new" = xyes +then :
-$as_echo "#define HAVE_GPHOTO2 1" >>confdefs.h +printf "%s\n" "#define HAVE_GPHOTO2 1" >>confdefs.h
-else +else $as_nop GPHOTO2_LIBS=""; GPHOTO2_CFLAGS="" fi
-else +else $as_nop GPHOTO2_LIBS=""; GPHOTO2_CFLAGS="" fi
- CPPFLAGS=$ac_save_CPPFLAGS
- if ${GPHOTO2_PORT_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${GPHOTO2_PORT_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : GPHOTO2_PORT_CFLAGS=`$PKG_CONFIG --cflags libgphoto2_port 2>/dev/null` fi fi test "$cross_compiling" = yes || GPHOTO2_PORT_CFLAGS=${GPHOTO2_PORT_CFLAGS:-`${GPHOTO2_PORT_CONFIG:-gphoto2-port-config} --cflags 2>/dev/null`} -if ${GPHOTO2_PORT_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${GPHOTO2_PORT_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : GPHOTO2_PORT_LIBS=`$PKG_CONFIG --libs libgphoto2_port 2>/dev/null` fi fi test "$cross_compiling" = yes || GPHOTO2_PORT_LIBS=${GPHOTO2_PORT_LIBS:-`${GPHOTO2_PORT_CONFIG:-gphoto2-port-config} --libs 2>/dev/null`} GPHOTO2_PORT_LIBS=${GPHOTO2_PORT_LIBS:-"-lgphoto2_port"} -$as_echo "$as_me:${as_lineno-$LINENO}: libgphoto2_port cflags: $GPHOTO2_PORT_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libgphoto2_port libs: $GPHOTO2_PORT_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libgphoto2_port cflags: $GPHOTO2_PORT_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libgphoto2_port libs: $GPHOTO2_PORT_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $GPHOTO2_PORT_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "gphoto2-port.h" "ac_cv_header_gphoto2_port_h" "$ac_includes_default" -if test "x$ac_cv_header_gphoto2_port_h" = xyes; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gp_port_info_list_new in -lgphoto2_port" >&5 -$as_echo_n "checking for gp_port_info_list_new in -lgphoto2_port... " >&6; } -if ${ac_cv_lib_gphoto2_port_gp_port_info_list_new+:} false; then : - $as_echo_n "(cached) " >&6 -else +ac_fn_c_check_header_compile "$LINENO" "gphoto2-port.h" "ac_cv_header_gphoto2_port_h" "$ac_includes_default" +if test "x$ac_cv_header_gphoto2_port_h" = xyes +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gp_port_info_list_new in -lgphoto2_port" >&5 +printf %s "checking for gp_port_info_list_new in -lgphoto2_port... " >&6; } +if test ${ac_cv_lib_gphoto2_port_gp_port_info_list_new+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lgphoto2_port $GPHOTO2_PORT_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14078,46 +16290,45 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gp_port_info_list_new (); int -main () +main (void) { return gp_port_info_list_new (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_gphoto2_port_gp_port_info_list_new=yes -else +else $as_nop ac_cv_lib_gphoto2_port_gp_port_info_list_new=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gphoto2_port_gp_port_info_list_new" >&5 -$as_echo "$ac_cv_lib_gphoto2_port_gp_port_info_list_new" >&6; } -if test "x$ac_cv_lib_gphoto2_port_gp_port_info_list_new" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gphoto2_port_gp_port_info_list_new" >&5 +printf "%s\n" "$ac_cv_lib_gphoto2_port_gp_port_info_list_new" >&6; } +if test "x$ac_cv_lib_gphoto2_port_gp_port_info_list_new" = xyes +then :
-$as_echo "#define HAVE_GPHOTO2_PORT 1" >>confdefs.h +printf "%s\n" "#define HAVE_GPHOTO2_PORT 1" >>confdefs.h
-else +else $as_nop GPHOTO2_PORT_LIBS=""; GPHOTO2_PORT_CFLAGS="" fi
-else +else $as_nop GPHOTO2_PORT_LIBS=""; GPHOTO2_PORT_CFLAGS="" fi
- CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "$ac_cv_lib_gphoto2_gp_camera_new" != "yes"; then : +if test "$ac_cv_lib_gphoto2_gp_camera_new" != "yes" +then : case "x$with_gphoto" in x) as_fn_append wine_notices "|libgphoto2 ${notice_platform}development files not found, digital cameras won't be supported." ;; xno) ;; @@ -14126,7 +16337,8 @@ This is an error since --with-gphoto was requested." "$LINENO" 5 ;; esac
fi -if test "$ac_cv_lib_gphoto2_port_gp_port_info_list_new" != "yes"; then : +if test "$ac_cv_lib_gphoto2_port_gp_port_info_list_new" != "yes" +then : case "x$with_gphoto" in x) as_fn_append wine_notices "|libgphoto2_port ${notice_platform}development files not found, digital cameras won't be auto-detected." ;; xno) ;; @@ -14139,11 +16351,12 @@ fi
if test "$ac_cv_header_resolv_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for resolver library" >&5 -$as_echo_n "checking for resolver library... " >&6; } -if ${ac_cv_have_resolv+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for resolver library" >&5 +printf %s "checking for resolver library... " >&6; } +if test ${ac_cv_have_resolv+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_save_LIBS="$LIBS" for lib in '' -lresolv do @@ -14155,35 +16368,36 @@ else #endif #include <resolv.h> int -main () +main (void) { if (!(_res.options & RES_INIT)) res_init(); res_query("foo",ns_c_in,0,0,0); ns_initparse(0,0,0) ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_have_resolv=${lib:-"none required"} -else +else $as_nop ac_cv_have_resolv="not found" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext test "x$ac_cv_have_resolv" = "xnot found" || break done LIBS="$ac_save_LIBS" fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_resolv" >&5 -$as_echo "$ac_cv_have_resolv" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_resolv" >&5 +printf "%s\n" "$ac_cv_have_resolv" >&6; }
case "$ac_cv_have_resolv" in "not found") ;; "none required")
-$as_echo "#define HAVE_RESOLV 1" >>confdefs.h +printf "%s\n" "#define HAVE_RESOLV 1" >>confdefs.h ;; *) - $as_echo "#define HAVE_RESOLV 1" >>confdefs.h + printf "%s\n" "#define HAVE_RESOLV 1" >>confdefs.h
RESOLV_LIBS=$ac_cv_have_resolv ;; @@ -14191,39 +16405,41 @@ $as_echo "#define HAVE_RESOLV 1" >>confdefs.h
if test "x$ac_cv_have_resolv" != "xnot found" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for res_getservers" >&5 -$as_echo_n "checking for res_getservers... " >&6; } -if ${ac_cv_have_res_getservers+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for res_getservers" >&5 +printf %s "checking for res_getservers... " >&6; } +if test ${ac_cv_have_res_getservers+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_save_LIBS="$LIBS" LIBS="$RESOLV_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <resolv.h> int -main () +main (void) { res_getservers(NULL, NULL, 0); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_have_res_getservers=yes -else +else $as_nop ac_cv_have_res_getservers=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS="$ac_save_LIBS" fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_res_getservers" >&5 -$as_echo "$ac_cv_have_res_getservers" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_res_getservers" >&5 +printf "%s\n" "$ac_cv_have_res_getservers" >&6; } if test "$ac_cv_have_res_getservers" = "yes" then
-$as_echo "#define HAVE_RES_GETSERVERS 1" >>confdefs.h +printf "%s\n" "#define HAVE_RES_GETSERVERS 1" >>confdefs.h
fi fi @@ -14231,42 +16447,42 @@ fi
if test "x$with_cms" != "xno" then - if ${LCMS2_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${LCMS2_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : LCMS2_CFLAGS=`$PKG_CONFIG --cflags lcms2 2>/dev/null` fi fi
-if ${LCMS2_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${LCMS2_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : LCMS2_LIBS=`$PKG_CONFIG --libs lcms2 2>/dev/null` fi fi
LCMS2_LIBS=${LCMS2_LIBS:-"-llcms2"} -$as_echo "$as_me:${as_lineno-$LINENO}: lcms2 cflags: $LCMS2_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: lcms2 libs: $LCMS2_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: lcms2 cflags: $LCMS2_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: lcms2 libs: $LCMS2_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $LCMS2_CFLAGS" -for ac_header in lcms2.h -do : - ac_fn_c_check_header_mongrel "$LINENO" "lcms2.h" "ac_cv_header_lcms2_h" "$ac_includes_default" -if test "x$ac_cv_header_lcms2_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_LCMS2_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "lcms2.h" "ac_cv_header_lcms2_h" "$ac_includes_default" +if test "x$ac_cv_header_lcms2_h" = xyes +then : + printf "%s\n" "#define HAVE_LCMS2_H 1" >>confdefs.h
fi
-done - if test "$ac_cv_header_lcms2_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for cmsOpenProfileFromFile in -llcms2" >&5 -$as_echo_n "checking for cmsOpenProfileFromFile in -llcms2... " >&6; } -if ${ac_cv_lib_lcms2_cmsOpenProfileFromFile+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for cmsOpenProfileFromFile in -llcms2" >&5 +printf %s "checking for cmsOpenProfileFromFile in -llcms2... " >&6; } +if test ${ac_cv_lib_lcms2_cmsOpenProfileFromFile+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-llcms2 $LCMS2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14275,34 +16491,33 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char cmsOpenProfileFromFile (); int -main () +main (void) { return cmsOpenProfileFromFile (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_lcms2_cmsOpenProfileFromFile=yes -else +else $as_nop ac_cv_lib_lcms2_cmsOpenProfileFromFile=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lcms2_cmsOpenProfileFromFile" >&5 -$as_echo "$ac_cv_lib_lcms2_cmsOpenProfileFromFile" >&6; } -if test "x$ac_cv_lib_lcms2_cmsOpenProfileFromFile" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lcms2_cmsOpenProfileFromFile" >&5 +printf "%s\n" "$ac_cv_lib_lcms2_cmsOpenProfileFromFile" >&6; } +if test "x$ac_cv_lib_lcms2_cmsOpenProfileFromFile" = xyes +then :
-$as_echo "#define HAVE_LCMS2 1" >>confdefs.h +printf "%s\n" "#define HAVE_LCMS2 1" >>confdefs.h
-else +else $as_nop LCMS2_LIBS="" fi
@@ -14313,7 +16528,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "$ac_cv_lib_lcms2_cmsOpenProfileFromFile" != "yes"; then : +if test "$ac_cv_lib_lcms2_cmsOpenProfileFromFile" != "yes" +then : case "x$with_cms" in x) as_fn_append wine_notices "|liblcms2 ${notice_platform}development files not found, Color Management won't be supported." ;; xno) ;; @@ -14325,42 +16541,42 @@ fi
if test "x$with_freetype" != "xno" then - if ${FREETYPE_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${FREETYPE_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : FREETYPE_CFLAGS=`$PKG_CONFIG --cflags freetype2 2>/dev/null` fi fi test "$cross_compiling" = yes || FREETYPE_CFLAGS=${FREETYPE_CFLAGS:-`(${FREETYPE_CONFIG:-freetype-config} --cflags || ${FREETYPE2_CONFIG:-freetype2-config} --cflags) 2>/dev/null`} -if ${FREETYPE_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${FREETYPE_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : FREETYPE_LIBS=`$PKG_CONFIG --libs freetype2 2>/dev/null` fi fi test "$cross_compiling" = yes || FREETYPE_LIBS=${FREETYPE_LIBS:-`(${FREETYPE_CONFIG:-freetype-config} --libs || ${FREETYPE2_CONFIG:-freetype2-config} --libs) 2>/dev/null`} FREETYPE_LIBS=${FREETYPE_LIBS:-"-lfreetype"} -$as_echo "$as_me:${as_lineno-$LINENO}: freetype2 cflags: $FREETYPE_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: freetype2 libs: $FREETYPE_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: freetype2 cflags: $FREETYPE_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: freetype2 libs: $FREETYPE_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $FREETYPE_CFLAGS" -for ac_header in ft2build.h -do : - ac_fn_c_check_header_mongrel "$LINENO" "ft2build.h" "ac_cv_header_ft2build_h" "$ac_includes_default" -if test "x$ac_cv_header_ft2build_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_FT2BUILD_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "ft2build.h" "ac_cv_header_ft2build_h" "$ac_includes_default" +if test "x$ac_cv_header_ft2build_h" = xyes +then : + printf "%s\n" "#define HAVE_FT2BUILD_H 1" >>confdefs.h
fi
-done - if test "$ac_cv_header_ft2build_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lfreetype" >&5 -$as_echo_n "checking for -lfreetype... " >&6; } -if ${ac_cv_lib_soname_freetype+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lfreetype" >&5 +printf %s "checking for -lfreetype... " >&6; } +if test ${ac_cv_lib_soname_freetype+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lfreetype $FREETYPE_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14369,57 +16585,54 @@ LIBS="-lfreetype $FREETYPE_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char FT_Init_FreeType (); int -main () +main (void) { return FT_Init_FreeType (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_freetype=`$ac_cv_path_LDD conftest.exe | grep "freetype" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_freetype=`$OTOOL -L conftest$ac_exeext | grep "libfreetype\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libfreetype.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_freetype=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libfreetype\.$LIBEXT" | sed -e "s/^.*\[\(libfreetype\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_freetype:+false} :; then : + if ${ac_cv_lib_soname_freetype:+false} : +then : ac_cv_lib_soname_freetype=`$LDD conftest$ac_exeext | grep "libfreetype\.$LIBEXT" | sed -e "s/^.*(libfreetype.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_freetype= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_freetype:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_freetype:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } FREETYPE_LIBS="" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_freetype" >&5 -$as_echo "$ac_cv_lib_soname_freetype" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_freetype" >&5 +printf "%s\n" "$ac_cv_lib_soname_freetype" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBFREETYPE "$ac_cv_lib_soname_freetype" -_ACEOF +printf "%s\n" "#define SONAME_LIBFREETYPE "$ac_cv_lib_soname_freetype"" >>confdefs.h
-$as_echo "#define HAVE_FREETYPE 1" >>confdefs.h +printf "%s\n" "#define HAVE_FREETYPE 1" >>confdefs.h
ac_fn_c_check_type "$LINENO" "FT_TrueTypeEngineType" "ac_cv_type_FT_TrueTypeEngineType" "#include <ft2build.h> #include FT_MODULE_H " -if test "x$ac_cv_type_FT_TrueTypeEngineType" = xyes; then : +if test "x$ac_cv_type_FT_TrueTypeEngineType" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_FT_TRUETYPEENGINETYPE 1 -_ACEOF +printf "%s\n" "#define HAVE_FT_TRUETYPEENGINETYPE 1" >>confdefs.h
fi @@ -14432,7 +16645,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_freetype" = x; then : +if test "x$ac_cv_lib_soname_freetype" = x +then : case "x$with_freetype" in xno) ;; *) as_fn_error $? "FreeType ${notice_platform}development files not found. Fonts will not be built. @@ -14443,18 +16657,12 @@ fi
ac_wine_check_funcs_save_LIBS="$LIBS" LIBS="$LIBS $PTHREAD_LIBS" -for ac_func in \ - pthread_getthreadid_np -do : - as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test "x$"$as_ac_var"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_func "$LINENO" "pthread_getthreadid_np" "ac_cv_func_pthread_getthreadid_np" +if test "x$ac_cv_func_pthread_getthreadid_np" = xyes +then : + printf "%s\n" "#define HAVE_PTHREAD_GETTHREADID_NP 1" >>confdefs.h
fi -done
LIBS="$ac_wine_check_funcs_save_LIBS"
@@ -14462,11 +16670,12 @@ if test "x$enable_tools" != xno -a "x$with_gettextpo" = xyes then if test "$ac_cv_header_gettext_po_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for po_message_msgctxt in -lgettextpo" >&5 -$as_echo_n "checking for po_message_msgctxt in -lgettextpo... " >&6; } -if ${ac_cv_lib_gettextpo_po_message_msgctxt+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for po_message_msgctxt in -lgettextpo" >&5 +printf %s "checking for po_message_msgctxt in -lgettextpo... " >&6; } +if test ${ac_cv_lib_gettextpo_po_message_msgctxt+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lgettextpo $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14475,39 +16684,39 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char po_message_msgctxt (); int -main () +main (void) { return po_message_msgctxt (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_gettextpo_po_message_msgctxt=yes -else +else $as_nop ac_cv_lib_gettextpo_po_message_msgctxt=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gettextpo_po_message_msgctxt" >&5 -$as_echo "$ac_cv_lib_gettextpo_po_message_msgctxt" >&6; } -if test "x$ac_cv_lib_gettextpo_po_message_msgctxt" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gettextpo_po_message_msgctxt" >&5 +printf "%s\n" "$ac_cv_lib_gettextpo_po_message_msgctxt" >&6; } +if test "x$ac_cv_lib_gettextpo_po_message_msgctxt" = xyes +then :
-$as_echo "#define HAVE_LIBGETTEXTPO 1" >>confdefs.h +printf "%s\n" "#define HAVE_LIBGETTEXTPO 1" >>confdefs.h
GETTEXTPO_LIBS="-lgettextpo"
fi
fi - if test "x$GETTEXTPO_LIBS" = "x"; then : + if test "x$GETTEXTPO_LIBS" = "x" +then : case "x$with_gettextpo" in x) as_fn_append wine_notices "|GetText ${notice_platform}development files not found (or too old), po files can't be rebuilt." ;; xno) ;; @@ -14516,7 +16725,8 @@ This is an error since --with-gettextpo was requested." "$LINENO" 5 ;; esac
fi - if test "$srcdir" != .; then : + if test "$srcdir" != . +then : case "x$with_gettextpo" in x) as_fn_append wine_notices "|Rebuilding po files is not supported for out of tree builds." ;; xno) ;; @@ -14529,35 +16739,39 @@ fi
if test "x$with_pulse" != "xno"; then - if ${PULSE_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${PULSE_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : PULSE_CFLAGS=`$PKG_CONFIG --cflags libpulse 2>/dev/null` fi fi
-if ${PULSE_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${PULSE_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : PULSE_LIBS=`$PKG_CONFIG --libs libpulse 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: libpulse cflags: $PULSE_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libpulse libs: $PULSE_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libpulse cflags: $PULSE_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libpulse libs: $PULSE_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $PULSE_CFLAGS" -for ac_header in pulse/pulseaudio.h + for ac_header in pulse/pulseaudio.h do : - ac_fn_c_check_header_mongrel "$LINENO" "pulse/pulseaudio.h" "ac_cv_header_pulse_pulseaudio_h" "$ac_includes_default" -if test "x$ac_cv_header_pulse_pulseaudio_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_PULSE_PULSEAUDIO_H 1 -_ACEOF - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pa_stream_is_corked in -lpulse" >&5 -$as_echo_n "checking for pa_stream_is_corked in -lpulse... " >&6; } -if ${ac_cv_lib_pulse_pa_stream_is_corked+:} false; then : - $as_echo_n "(cached) " >&6 -else + ac_fn_c_check_header_compile "$LINENO" "pulse/pulseaudio.h" "ac_cv_header_pulse_pulseaudio_h" "$ac_includes_default" +if test "x$ac_cv_header_pulse_pulseaudio_h" = xyes +then : + printf "%s\n" "#define HAVE_PULSE_PULSEAUDIO_H 1" >>confdefs.h + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pa_stream_is_corked in -lpulse" >&5 +printf %s "checking for pa_stream_is_corked in -lpulse... " >&6; } +if test ${ac_cv_lib_pulse_pa_stream_is_corked+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lpulse $PULSE_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14566,45 +16780,44 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char pa_stream_is_corked (); int -main () +main (void) { return pa_stream_is_corked (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_pulse_pa_stream_is_corked=yes -else +else $as_nop ac_cv_lib_pulse_pa_stream_is_corked=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pulse_pa_stream_is_corked" >&5 -$as_echo "$ac_cv_lib_pulse_pa_stream_is_corked" >&6; } -if test "x$ac_cv_lib_pulse_pa_stream_is_corked" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pulse_pa_stream_is_corked" >&5 +printf "%s\n" "$ac_cv_lib_pulse_pa_stream_is_corked" >&6; } +if test "x$ac_cv_lib_pulse_pa_stream_is_corked" = xyes +then : : -else +else $as_nop PULSE_LIBS="" fi
-else +else $as_nop PULSE_LIBS="" fi
done - CPPFLAGS=$ac_save_CPPFLAGS
fi -if test -z "$PULSE_LIBS"; then : +if test -z "$PULSE_LIBS" +then : case "x$with_pulse" in x) as_fn_append wine_notices "|libpulse ${notice_platform}development files not found or too old, Pulse won't be supported." ;; xno) ;; @@ -14616,46 +16829,53 @@ fi
if test "x$with_gstreamer" != "xno" then - if ${GSTREAMER_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${GSTREAMER_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : GSTREAMER_CFLAGS=`$PKG_CONFIG --cflags gstreamer-1.0 gstreamer-video-1.0 gstreamer-audio-1.0 2>/dev/null` fi fi
-if ${GSTREAMER_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${GSTREAMER_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : GSTREAMER_LIBS=`$PKG_CONFIG --libs gstreamer-1.0 gstreamer-video-1.0 gstreamer-audio-1.0 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: gstreamer-1.0 gstreamer-video-1.0 gstreamer-audio-1.0 cflags: $GSTREAMER_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: gstreamer-1.0 gstreamer-video-1.0 gstreamer-audio-1.0 libs: $GSTREAMER_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: gstreamer-1.0 gstreamer-video-1.0 gstreamer-audio-1.0 cflags: $GSTREAMER_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: gstreamer-1.0 gstreamer-video-1.0 gstreamer-audio-1.0 libs: $GSTREAMER_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $GSTREAMER_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "gst/gst.h" "ac_cv_header_gst_gst_h" "$ac_includes_default" -if test "x$ac_cv_header_gst_gst_h" = xyes; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether gint64 defined by gst/gst.h is indeed 64-bit" >&5 -$as_echo_n "checking whether gint64 defined by gst/gst.h is indeed 64-bit... " >&6; } +ac_fn_c_check_header_compile "$LINENO" "gst/gst.h" "ac_cv_header_gst_gst_h" "$ac_includes_default" +if test "x$ac_cv_header_gst_gst_h" = xyes +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether gint64 defined by gst/gst.h is indeed 64-bit" >&5 +printf %s "checking whether gint64 defined by gst/gst.h is indeed 64-bit... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <gst/gst.h> int -main () +main (void) { static int a[sizeof(gint64) > 4 ? 1 : -1]; if (a[0]) return 0; ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -$as_echo "yes" >&6; } - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gst_pad_new in -lgstreamer-1.0" >&5 -$as_echo_n "checking for gst_pad_new in -lgstreamer-1.0... " >&6; } -if ${ac_cv_lib_gstreamer_1_0_gst_pad_new+:} false; then : - $as_echo_n "(cached) " >&6 -else +if ac_fn_c_try_compile "$LINENO" +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +printf "%s\n" "yes" >&6; } + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gst_pad_new in -lgstreamer-1.0" >&5 +printf %s "checking for gst_pad_new in -lgstreamer-1.0... " >&6; } +if test ${ac_cv_lib_gstreamer_1_0_gst_pad_new+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lgstreamer-1.0 $GSTREAMER_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14664,49 +16884,48 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gst_pad_new (); int -main () +main (void) { return gst_pad_new (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_gstreamer_1_0_gst_pad_new=yes -else +else $as_nop ac_cv_lib_gstreamer_1_0_gst_pad_new=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gstreamer_1_0_gst_pad_new" >&5 -$as_echo "$ac_cv_lib_gstreamer_1_0_gst_pad_new" >&6; } -if test "x$ac_cv_lib_gstreamer_1_0_gst_pad_new" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gstreamer_1_0_gst_pad_new" >&5 +printf "%s\n" "$ac_cv_lib_gstreamer_1_0_gst_pad_new" >&6; } +if test "x$ac_cv_lib_gstreamer_1_0_gst_pad_new" = xyes +then : : fi
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } ac_glib2_broken=yes as_fn_append wine_notices "|glib-2.0 pkgconfig configuration is for the wrong architecture, winegstreamer won't be built." fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi
- CPPFLAGS=$ac_save_CPPFLAGS
fi if test "x$with_gstreamer" = xyes -o "x$with_quicktime" = xno -o "x$ac_cv_header_QuickTime_ImageCompression_h" != xyes then - if test "x$ac_glib2_broken" != xyes -a "x$ac_cv_lib_gstreamer_1_0_gst_pad_new" != xyes; then : + if test "x$ac_glib2_broken" != xyes -a "x$ac_cv_lib_gstreamer_1_0_gst_pad_new" != xyes +then : case "x$with_gstreamer" in x) as_fn_append wine_notices "|gstreamer-1.0 base plugins ${notice_platform}development files not found, GStreamer won't be supported." ;; xno) ;; @@ -14722,11 +16941,12 @@ ALSA_LIBS=""
if test "x$with_alsa" != "xno" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for snd_pcm_hw_params_get_access_mask in -lasound" >&5 -$as_echo_n "checking for snd_pcm_hw_params_get_access_mask in -lasound... " >&6; } -if ${ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for snd_pcm_hw_params_get_access_mask in -lasound" >&5 +printf %s "checking for snd_pcm_hw_params_get_access_mask in -lasound... " >&6; } +if test ${ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lasound $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14735,45 +16955,45 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char snd_pcm_hw_params_get_access_mask (); int -main () +main (void) { return snd_pcm_hw_params_get_access_mask (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask=yes -else +else $as_nop ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask" >&5 -$as_echo "$ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask" >&6; } -if test "x$ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask" >&5 +printf "%s\n" "$ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask" >&6; } +if test "x$ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask" = xyes +then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <alsa/asoundlib.h> int -main () +main (void) { snd_pcm_hw_params_get_access_mask(NULL, NULL) ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ALSA_LIBS="-lasound" fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi
fi @@ -14788,23 +17008,24 @@ then fi ac_oss_incl="-I${OSSLIBDIR:-/usr/lib/oss}/include" CPPFLAGS="$CPPFLAGS $ac_oss_incl" - ac_fn_c_check_header_mongrel "$LINENO" "sys/soundcard.h" "ac_cv_header_sys_soundcard_h" "$ac_includes_default" -if test "x$ac_cv_header_sys_soundcard_h" = xyes; then : + ac_fn_c_check_header_compile "$LINENO" "sys/soundcard.h" "ac_cv_header_sys_soundcard_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_soundcard_h" = xyes +then : ac_fn_c_check_member "$LINENO" "oss_sysinfo" "numaudioengines" "ac_cv_member_oss_sysinfo_numaudioengines" "#include <sys/soundcard.h> " -if test "x$ac_cv_member_oss_sysinfo_numaudioengines" = xyes; then : +if test "x$ac_cv_member_oss_sysinfo_numaudioengines" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_OSS_SYSINFO_NUMAUDIOENGINES 1 -_ACEOF +printf "%s\n" "#define HAVE_OSS_SYSINFO_NUMAUDIOENGINES 1" >>confdefs.h
OSS4_CFLAGS="$ac_oss_incl"
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _oss_ioctl in -lossaudio" >&5 -$as_echo_n "checking for _oss_ioctl in -lossaudio... " >&6; } -if ${ac_cv_lib_ossaudio__oss_ioctl+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for _oss_ioctl in -lossaudio" >&5 +printf %s "checking for _oss_ioctl in -lossaudio... " >&6; } +if test ${ac_cv_lib_ossaudio__oss_ioctl+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lossaudio $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14813,30 +17034,29 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char _oss_ioctl (); int -main () +main (void) { return _oss_ioctl (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_ossaudio__oss_ioctl=yes -else +else $as_nop ac_cv_lib_ossaudio__oss_ioctl=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ossaudio__oss_ioctl" >&5 -$as_echo "$ac_cv_lib_ossaudio__oss_ioctl" >&6; } -if test "x$ac_cv_lib_ossaudio__oss_ioctl" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ossaudio__oss_ioctl" >&5 +printf "%s\n" "$ac_cv_lib_ossaudio__oss_ioctl" >&6; } +if test "x$ac_cv_lib_ossaudio__oss_ioctl" = xyes +then : OSS4_LIBS="-lossaudio"
fi @@ -14845,10 +17065,10 @@ fi
fi
- CPPFLAGS="$ac_save_CPPFLAGS" fi -if test "x$ac_cv_member_oss_sysinfo_numaudioengines" != xyes; then : +if test "x$ac_cv_member_oss_sysinfo_numaudioengines" != xyes +then : case "x$with_oss" in x) as_fn_append wine_notices "|OSS sound system found but too old (OSSv4 needed), OSS won't be supported." ;; xno) ;; @@ -14860,35 +17080,39 @@ fi
if test "x$with_udev" != "xno" then - if ${UDEV_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${UDEV_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : UDEV_CFLAGS=`$PKG_CONFIG --cflags libudev 2>/dev/null` fi fi
-if ${UDEV_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${UDEV_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : UDEV_LIBS=`$PKG_CONFIG --libs libudev 2>/dev/null` fi fi
UDEV_LIBS=${UDEV_LIBS:-"-ludev"} -$as_echo "$as_me:${as_lineno-$LINENO}: libudev cflags: $UDEV_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libudev libs: $UDEV_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libudev cflags: $UDEV_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libudev libs: $UDEV_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $UDEV_CFLAGS" -for ac_header in libudev.h + for ac_header in libudev.h do : - ac_fn_c_check_header_mongrel "$LINENO" "libudev.h" "ac_cv_header_libudev_h" "$ac_includes_default" -if test "x$ac_cv_header_libudev_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_LIBUDEV_H 1 -_ACEOF - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for udev_new in -ludev" >&5 -$as_echo_n "checking for udev_new in -ludev... " >&6; } -if ${ac_cv_lib_udev_udev_new+:} false; then : - $as_echo_n "(cached) " >&6 -else + ac_fn_c_check_header_compile "$LINENO" "libudev.h" "ac_cv_header_libudev_h" "$ac_includes_default" +if test "x$ac_cv_header_libudev_h" = xyes +then : + printf "%s\n" "#define HAVE_LIBUDEV_H 1" >>confdefs.h + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for udev_new in -ludev" >&5 +printf %s "checking for udev_new in -ludev... " >&6; } +if test ${ac_cv_lib_udev_udev_new+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-ludev $UDEV_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14897,47 +17121,46 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char udev_new (); int -main () +main (void) { return udev_new (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_udev_udev_new=yes -else +else $as_nop ac_cv_lib_udev_udev_new=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_udev_udev_new" >&5 -$as_echo "$ac_cv_lib_udev_udev_new" >&6; } -if test "x$ac_cv_lib_udev_udev_new" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_udev_udev_new" >&5 +printf "%s\n" "$ac_cv_lib_udev_udev_new" >&6; } +if test "x$ac_cv_lib_udev_udev_new" = xyes +then :
-$as_echo "#define HAVE_UDEV 1" >>confdefs.h +printf "%s\n" "#define HAVE_UDEV 1" >>confdefs.h
-else +else $as_nop UDEV_LIBS="" fi
-else +else $as_nop UDEV_LIBS="" fi
done - CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$UDEV_LIBS" = "x"; then : +if test "x$UDEV_LIBS" = "x" +then : case "x$with_udev" in x) as_fn_append wine_notices "|libudev ${notice_platform}development files not found, plug and play won't be supported." ;; xno) ;; @@ -14949,89 +17172,97 @@ fi
if test "x$with_unwind" != xno then - if ${UNWIND_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${UNWIND_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : UNWIND_CFLAGS=`$PKG_CONFIG --cflags libunwind 2>/dev/null` fi fi
-if ${UNWIND_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${UNWIND_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : UNWIND_LIBS=`$PKG_CONFIG --libs libunwind 2>/dev/null` fi fi
UNWIND_LIBS=${UNWIND_LIBS:-"-lunwind"} -$as_echo "$as_me:${as_lineno-$LINENO}: libunwind cflags: $UNWIND_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libunwind libs: $UNWIND_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libunwind cflags: $UNWIND_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libunwind libs: $UNWIND_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $UNWIND_CFLAGS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for unw_step" >&5 -$as_echo_n "checking for unw_step... " >&6; } -if ${wine_cv_have_unw_step+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for unw_step" >&5 +printf %s "checking for unw_step... " >&6; } +if test ${wine_cv_have_unw_step+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define UNW_LOCAL_ONLY #include <libunwind.h> int -main () +main (void) { unw_cursor_t cursor; unw_step( &cursor ); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_have_unw_step="yes" -else +else $as_nop wine_cv_have_unw_step="no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_unw_step" >&5 -$as_echo "$wine_cv_have_unw_step" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_unw_step" >&5 +printf "%s\n" "$wine_cv_have_unw_step" >&6; } if test "$wine_cv_have_unw_step" = no -a -n "$UNWIND_LIBS" then save_libs=$LIBS UNWIND_LIBS="-static-libgcc $UNWIND_LIBS" LIBS="$UNWIND_LIBS $LIBS" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for unw_step in libunwind" >&5 -$as_echo_n "checking for unw_step in libunwind... " >&6; } -if ${wine_cv_have_libunwind_unw_step+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for unw_step in libunwind" >&5 +printf %s "checking for unw_step in libunwind... " >&6; } +if test ${wine_cv_have_libunwind_unw_step+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define UNW_LOCAL_ONLY #include <libunwind.h> int -main () +main (void) { unw_cursor_t cursor; unw_step( &cursor ); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_have_libunwind_unw_step="yes" -else +else $as_nop wine_cv_have_libunwind_unw_step="no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_libunwind_unw_step" >&5 -$as_echo "$wine_cv_have_libunwind_unw_step" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_libunwind_unw_step" >&5 +printf "%s\n" "$wine_cv_have_libunwind_unw_step" >&6; } LIBS=$save_libs fi test "$wine_cv_have_libunwind_unw_step" = yes || UNWIND_LIBS="" if test "x$wine_cv_have_unw_step$wine_cv_have_libunwind_unw_step" != xnono then
-$as_echo "#define HAVE_LIBUNWIND 1" >>confdefs.h +printf "%s\n" "#define HAVE_LIBUNWIND 1" >>confdefs.h
fi CPPFLAGS=$ac_save_CPPFLAGS @@ -15039,7 +17270,8 @@ CPPFLAGS=$ac_save_CPPFLAGS fi case $host in aarch64*|*-darwin*) - if test "x$wine_cv_have_unw_step$wine_cv_have_libunwind_unw_step" = xnono; then : + if test "x$wine_cv_have_unw_step$wine_cv_have_libunwind_unw_step" = xnono +then : case "x$with_unwind" in x) as_fn_append wine_notices "|libunwind ${notice_platform}development files not found, stack unwinding won't work." ;; xno) ;; @@ -15052,35 +17284,39 @@ esac
if test "x$with_sdl" != "xno" then - if ${SDL2_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${SDL2_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : SDL2_CFLAGS=`$PKG_CONFIG --cflags sdl2 2>/dev/null` fi fi
-if ${SDL2_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${SDL2_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : SDL2_LIBS=`$PKG_CONFIG --libs sdl2 2>/dev/null` fi fi
SDL2_LIBS=${SDL2_LIBS:-"-lSDL2"} -$as_echo "$as_me:${as_lineno-$LINENO}: sdl2 cflags: $SDL2_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: sdl2 libs: $SDL2_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: sdl2 cflags: $SDL2_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: sdl2 libs: $SDL2_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $SDL2_CFLAGS" -for ac_header in SDL.h + for ac_header in SDL.h do : - ac_fn_c_check_header_mongrel "$LINENO" "SDL.h" "ac_cv_header_SDL_h" "$ac_includes_default" -if test "x$ac_cv_header_SDL_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_SDL_H 1 -_ACEOF - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lSDL2" >&5 -$as_echo_n "checking for -lSDL2... " >&6; } -if ${ac_cv_lib_soname_SDL2+:} false; then : - $as_echo_n "(cached) " >&6 -else + ac_fn_c_check_header_compile "$LINENO" "SDL.h" "ac_cv_header_SDL_h" "$ac_includes_default" +if test "x$ac_cv_header_SDL_h" = xyes +then : + printf "%s\n" "#define HAVE_SDL_H 1" >>confdefs.h + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lSDL2" >&5 +printf %s "checking for -lSDL2... " >&6; } +if test ${ac_cv_lib_soname_SDL2+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lSDL2 $SDL2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15089,56 +17325,54 @@ LIBS="-lSDL2 $SDL2_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char SDL_Init (); int -main () +main (void) { return SDL_Init (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_SDL2=`$ac_cv_path_LDD conftest.exe | grep "SDL2" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_SDL2=`$OTOOL -L conftest$ac_exeext | grep "libSDL2-2.0*\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libSDL2-2.0*.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_SDL2=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libSDL2-2.0*\.$LIBEXT" | sed -e "s/^.*\[\(libSDL2-2.0*\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_SDL2:+false} :; then : + if ${ac_cv_lib_soname_SDL2:+false} : +then : ac_cv_lib_soname_SDL2=`$LDD conftest$ac_exeext | grep "libSDL2-2.0*\.$LIBEXT" | sed -e "s/^.*(libSDL2-2.0*.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_SDL2= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_SDL2:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_SDL2:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_SDL2" >&5 -$as_echo "$ac_cv_lib_soname_SDL2" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_SDL2" >&5 +printf "%s\n" "$ac_cv_lib_soname_SDL2" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBSDL2 "$ac_cv_lib_soname_SDL2" -_ACEOF +printf "%s\n" "#define SONAME_LIBSDL2 "$ac_cv_lib_soname_SDL2"" >>confdefs.h
fi fi
done - CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_SDL2" = "x"; then : +if test "x$ac_cv_lib_soname_SDL2" = "x" +then : case "x$with_sdl" in x) as_fn_append wine_notices "|libSDL2 ${notice_platform}development files not found, SDL2 won't be supported." ;; xno) ;; @@ -15150,35 +17384,39 @@ fi
if test "x$with_faudio" != "xno" then - if ${FAUDIO_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${FAUDIO_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : FAUDIO_CFLAGS=`$PKG_CONFIG --cflags FAudio 2>/dev/null` fi fi
-if ${FAUDIO_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${FAUDIO_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : FAUDIO_LIBS=`$PKG_CONFIG --libs FAudio 2>/dev/null` fi fi
FAUDIO_LIBS=${FAUDIO_LIBS:-"-lFAudio"} -$as_echo "$as_me:${as_lineno-$LINENO}: FAudio cflags: $FAUDIO_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: FAudio libs: $FAUDIO_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: FAudio cflags: $FAUDIO_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: FAudio libs: $FAUDIO_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $FAUDIO_CFLAGS" -for ac_header in FAudio.h + for ac_header in FAudio.h do : - ac_fn_c_check_header_mongrel "$LINENO" "FAudio.h" "ac_cv_header_FAudio_h" "$ac_includes_default" -if test "x$ac_cv_header_FAudio_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_FAUDIO_H 1 -_ACEOF - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lFAudio" >&5 -$as_echo_n "checking for -lFAudio... " >&6; } -if ${ac_cv_lib_soname_FAudio+:} false; then : - $as_echo_n "(cached) " >&6 -else + ac_fn_c_check_header_compile "$LINENO" "FAudio.h" "ac_cv_header_FAudio_h" "$ac_includes_default" +if test "x$ac_cv_header_FAudio_h" = xyes +then : + printf "%s\n" "#define HAVE_FAUDIO_H 1" >>confdefs.h + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lFAudio" >&5 +printf %s "checking for -lFAudio... " >&6; } +if test ${ac_cv_lib_soname_FAudio+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lFAudio $FAUDIO_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15187,75 +17425,83 @@ LIBS="-lFAudio $FAUDIO_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char FAudioCreate (); int -main () +main (void) { return FAudioCreate (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_FAudio=`$ac_cv_path_LDD conftest.exe | grep "FAudio" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_FAudio=`$OTOOL -L conftest$ac_exeext | grep "libFAudio*\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libFAudio*.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_FAudio=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libFAudio*\.$LIBEXT" | sed -e "s/^.*\[\(libFAudio*\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_FAudio:+false} :; then : + if ${ac_cv_lib_soname_FAudio:+false} : +then : ac_cv_lib_soname_FAudio=`$LDD conftest$ac_exeext | grep "libFAudio*\.$LIBEXT" | sed -e "s/^.*(libFAudio*.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_FAudio= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_FAudio:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_FAudio:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_FAudio" >&5 -$as_echo "$ac_cv_lib_soname_FAudio" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_FAudio" >&5 +printf "%s\n" "$ac_cv_lib_soname_FAudio" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBFAUDIO "$ac_cv_lib_soname_FAudio" -_ACEOF +printf "%s\n" "#define SONAME_LIBFAUDIO "$ac_cv_lib_soname_FAudio"" >>confdefs.h
fi fi
done - ac_wine_check_funcs_save_LIBS="$LIBS" LIBS="$LIBS $FAUDIO_LIBS" -for ac_func in FAudio_CommitOperationSet \ - F3DAudioInitialize8 \ - FAudioLinkedVersion \ - FAudioCreateReverb9WithCustomAllocatorEXT -do : - as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test "x$"$as_ac_var"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_func "$LINENO" "FAudio_CommitOperationSet" "ac_cv_func_FAudio_CommitOperationSet" +if test "x$ac_cv_func_FAudio_CommitOperationSet" = xyes +then : + printf "%s\n" "#define HAVE_FAUDIO_COMMITOPERATIONSET 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "F3DAudioInitialize8" "ac_cv_func_F3DAudioInitialize8" +if test "x$ac_cv_func_F3DAudioInitialize8" = xyes +then : + printf "%s\n" "#define HAVE_F3DAUDIOINITIALIZE8 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "FAudioLinkedVersion" "ac_cv_func_FAudioLinkedVersion" +if test "x$ac_cv_func_FAudioLinkedVersion" = xyes +then : + printf "%s\n" "#define HAVE_FAUDIOLINKEDVERSION 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "FAudioCreateReverb9WithCustomAllocatorEXT" "ac_cv_func_FAudioCreateReverb9WithCustomAllocatorEXT" +if test "x$ac_cv_func_FAudioCreateReverb9WithCustomAllocatorEXT" = xyes +then : + printf "%s\n" "#define HAVE_FAUDIOCREATEREVERB9WITHCUSTOMALLOCATOREXT 1" >>confdefs.h
fi -done
LIBS="$ac_wine_check_funcs_save_LIBS"
CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_FAudio" = "x"; then : +if test "x$ac_cv_lib_soname_FAudio" = "x" +then : case "x$with_faudio" in x) as_fn_append wine_notices "|libFAudio ${notice_platform}development files not found, XAudio2 won't be supported." ;; xno) ;; @@ -15267,44 +17513,50 @@ fi
if test "x$with_capi" != "xno" then - if ${CAPI20_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${CAPI20_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : CAPI20_CFLAGS=`$PKG_CONFIG --cflags capi20 2>/dev/null` fi fi
-if ${CAPI20_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${CAPI20_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : CAPI20_LIBS=`$PKG_CONFIG --libs capi20 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: capi20 cflags: $CAPI20_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: capi20 libs: $CAPI20_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: capi20 cflags: $CAPI20_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: capi20 libs: $CAPI20_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $CAPI20_CFLAGS" - for ac_header in capi20.h linux/capi.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#define __user + ac_fn_c_check_header_compile "$LINENO" "capi20.h" "ac_cv_header_capi20_h" "#define __user " -if eval test "x$"$as_ac_Header"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +if test "x$ac_cv_header_capi20_h" = xyes +then : + printf "%s\n" "#define HAVE_CAPI20_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "linux/capi.h" "ac_cv_header_linux_capi_h" "#define __user +" +if test "x$ac_cv_header_linux_capi_h" = xyes +then : + printf "%s\n" "#define HAVE_LINUX_CAPI_H 1" >>confdefs.h
-done +fi
if test "$ac_cv_header_capi20_h" = "yes" -a "$ac_cv_header_linux_capi_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lcapi20" >&5 -$as_echo_n "checking for -lcapi20... " >&6; } -if ${ac_cv_lib_soname_capi20+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lcapi20" >&5 +printf %s "checking for -lcapi20... " >&6; } +if test ${ac_cv_lib_soname_capi20+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lcapi20 $CAPI20_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15313,45 +17565,43 @@ LIBS="-lcapi20 $CAPI20_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char capi20_register (); int -main () +main (void) { return capi20_register (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_capi20=`$ac_cv_path_LDD conftest.exe | grep "capi20" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_capi20=`$OTOOL -L conftest$ac_exeext | grep "libcapi20\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libcapi20.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_capi20=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libcapi20\.$LIBEXT" | sed -e "s/^.*\[\(libcapi20\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_capi20:+false} :; then : + if ${ac_cv_lib_soname_capi20:+false} : +then : ac_cv_lib_soname_capi20=`$LDD conftest$ac_exeext | grep "libcapi20\.$LIBEXT" | sed -e "s/^.*(libcapi20.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_capi20= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_capi20:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_capi20:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_capi20" >&5 -$as_echo "$ac_cv_lib_soname_capi20" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_capi20" >&5 +printf "%s\n" "$ac_cv_lib_soname_capi20" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBCAPI20 "$ac_cv_lib_soname_capi20" -_ACEOF +printf "%s\n" "#define SONAME_LIBCAPI20 "$ac_cv_lib_soname_capi20"" >>confdefs.h
fi @@ -15359,7 +17609,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_capi20" = "x"; then : +if test "x$ac_cv_lib_soname_capi20" = "x" +then : case "x$with_capi" in x) as_fn_append wine_notices "|libcapi20 ${notice_platform}development files not found, ISDN won't be supported." ;; xno) ;; @@ -15371,43 +17622,48 @@ fi
if test "x$with_cups" != "xno" then - if ${CUPS_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${CUPS_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : CUPS_CFLAGS=`$PKG_CONFIG --cflags cups 2>/dev/null` fi fi test "$cross_compiling" = yes || CUPS_CFLAGS=${CUPS_CFLAGS:-`${CUPS_CONFIG:-cups-config} --cflags 2>/dev/null`} -if ${CUPS_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${CUPS_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : CUPS_LIBS=`$PKG_CONFIG --libs cups 2>/dev/null` fi fi test "$cross_compiling" = yes || CUPS_LIBS=${CUPS_LIBS:-`${CUPS_CONFIG:-cups-config} --libs 2>/dev/null`} CUPS_LIBS=${CUPS_LIBS:-"-lcups"} -$as_echo "$as_me:${as_lineno-$LINENO}: cups cflags: $CUPS_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: cups libs: $CUPS_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: cups cflags: $CUPS_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: cups libs: $CUPS_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $CUPS_CFLAGS" -for ac_header in cups/cups.h cups/ppd.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test "x$"$as_ac_Header"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "cups/cups.h" "ac_cv_header_cups_cups_h" "$ac_includes_default" +if test "x$ac_cv_header_cups_cups_h" = xyes +then : + printf "%s\n" "#define HAVE_CUPS_CUPS_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "cups/ppd.h" "ac_cv_header_cups_ppd_h" "$ac_includes_default" +if test "x$ac_cv_header_cups_ppd_h" = xyes +then : + printf "%s\n" "#define HAVE_CUPS_PPD_H 1" >>confdefs.h
-done +fi
if test "$ac_cv_header_cups_cups_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lcups" >&5 -$as_echo_n "checking for -lcups... " >&6; } -if ${ac_cv_lib_soname_cups+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lcups" >&5 +printf %s "checking for -lcups... " >&6; } +if test ${ac_cv_lib_soname_cups+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lcups $CUPS_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15416,45 +17672,43 @@ LIBS="-lcups $CUPS_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char cupsGetDefault (); int -main () +main (void) { return cupsGetDefault (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_cups=`$ac_cv_path_LDD conftest.exe | grep "cups" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_cups=`$OTOOL -L conftest$ac_exeext | grep "libcups\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libcups.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_cups=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libcups\.$LIBEXT" | sed -e "s/^.*\[\(libcups\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_cups:+false} :; then : + if ${ac_cv_lib_soname_cups:+false} : +then : ac_cv_lib_soname_cups=`$LDD conftest$ac_exeext | grep "libcups\.$LIBEXT" | sed -e "s/^.*(libcups.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_cups= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_cups:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_cups:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } CUPS_LIBS="" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_cups" >&5 -$as_echo "$ac_cv_lib_soname_cups" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_cups" >&5 +printf "%s\n" "$ac_cv_lib_soname_cups" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBCUPS "$ac_cv_lib_soname_cups" -_ACEOF +printf "%s\n" "#define SONAME_LIBCUPS "$ac_cv_lib_soname_cups"" >>confdefs.h
fi @@ -15465,7 +17719,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_cups" = "x"; then : +if test "x$ac_cv_lib_soname_cups" = "x" +then : case "x$with_cups" in x) as_fn_append wine_notices "|libcups ${notice_platform}development files not found, CUPS won't be supported." ;; xno) ;; @@ -15477,42 +17732,42 @@ fi
if test "x$with_fontconfig" != "xno" then - if ${FONTCONFIG_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${FONTCONFIG_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : FONTCONFIG_CFLAGS=`$PKG_CONFIG --cflags fontconfig 2>/dev/null` fi fi test "$cross_compiling" = yes || FONTCONFIG_CFLAGS=${FONTCONFIG_CFLAGS:-$X_CFLAGS} -if ${FONTCONFIG_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${FONTCONFIG_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : FONTCONFIG_LIBS=`$PKG_CONFIG --libs fontconfig 2>/dev/null` fi fi test "$cross_compiling" = yes || FONTCONFIG_LIBS=${FONTCONFIG_LIBS:-$X_LIBS}
-$as_echo "$as_me:${as_lineno-$LINENO}: fontconfig cflags: $FONTCONFIG_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: fontconfig libs: $FONTCONFIG_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: fontconfig cflags: $FONTCONFIG_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: fontconfig libs: $FONTCONFIG_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $FONTCONFIG_CFLAGS" -for ac_header in fontconfig/fontconfig.h -do : - ac_fn_c_check_header_mongrel "$LINENO" "fontconfig/fontconfig.h" "ac_cv_header_fontconfig_fontconfig_h" "$ac_includes_default" -if test "x$ac_cv_header_fontconfig_fontconfig_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_FONTCONFIG_FONTCONFIG_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "fontconfig/fontconfig.h" "ac_cv_header_fontconfig_fontconfig_h" "$ac_includes_default" +if test "x$ac_cv_header_fontconfig_fontconfig_h" = xyes +then : + printf "%s\n" "#define HAVE_FONTCONFIG_FONTCONFIG_H 1" >>confdefs.h
fi
-done - if test "$ac_cv_header_fontconfig_fontconfig_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lfontconfig" >&5 -$as_echo_n "checking for -lfontconfig... " >&6; } -if ${ac_cv_lib_soname_fontconfig+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lfontconfig" >&5 +printf %s "checking for -lfontconfig... " >&6; } +if test ${ac_cv_lib_soname_fontconfig+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lfontconfig $FONTCONFIG_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15521,45 +17776,43 @@ LIBS="-lfontconfig $FONTCONFIG_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char FcInit (); int -main () +main (void) { return FcInit (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_fontconfig=`$ac_cv_path_LDD conftest.exe | grep "fontconfig" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_fontconfig=`$OTOOL -L conftest$ac_exeext | grep "libfontconfig\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libfontconfig.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_fontconfig=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libfontconfig\.$LIBEXT" | sed -e "s/^.*\[\(libfontconfig\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_fontconfig:+false} :; then : + if ${ac_cv_lib_soname_fontconfig:+false} : +then : ac_cv_lib_soname_fontconfig=`$LDD conftest$ac_exeext | grep "libfontconfig\.$LIBEXT" | sed -e "s/^.*(libfontconfig.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_fontconfig= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_fontconfig:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_fontconfig:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } FONTCONFIG_CFLAGS="" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_fontconfig" >&5 -$as_echo "$ac_cv_lib_soname_fontconfig" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_fontconfig" >&5 +printf "%s\n" "$ac_cv_lib_soname_fontconfig" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBFONTCONFIG "$ac_cv_lib_soname_fontconfig" -_ACEOF +printf "%s\n" "#define SONAME_LIBFONTCONFIG "$ac_cv_lib_soname_fontconfig"" >>confdefs.h
fi @@ -15569,7 +17822,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_fontconfig" = "x"; then : +if test "x$ac_cv_lib_soname_fontconfig" = "x" +then : case "x$with_fontconfig" in x) as_fn_append wine_notices "|fontconfig ${notice_platform}development files not found, fontconfig won't be supported." ;; xno) ;; @@ -15581,11 +17835,12 @@ fi
if test "$ac_cv_header_gsm_h" = "yes" -o "$ac_cv_header_gsm_gsm_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lgsm" >&5 -$as_echo_n "checking for -lgsm... " >&6; } -if ${ac_cv_lib_soname_gsm+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lgsm" >&5 +printf %s "checking for -lgsm... " >&6; } +if test ${ac_cv_lib_soname_gsm+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lgsm $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15594,50 +17849,49 @@ LIBS="-lgsm $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gsm_create (); int -main () +main (void) { return gsm_create (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_gsm=`$ac_cv_path_LDD conftest.exe | grep "gsm" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_gsm=`$OTOOL -L conftest$ac_exeext | grep "libgsm\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libgsm.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_gsm=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libgsm\.$LIBEXT" | sed -e "s/^.*\[\(libgsm\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_gsm:+false} :; then : + if ${ac_cv_lib_soname_gsm:+false} : +then : ac_cv_lib_soname_gsm=`$LDD conftest$ac_exeext | grep "libgsm\.$LIBEXT" | sed -e "s/^.*(libgsm.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_gsm= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_gsm:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_gsm:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_gsm" >&5 -$as_echo "$ac_cv_lib_soname_gsm" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_gsm" >&5 +printf "%s\n" "$ac_cv_lib_soname_gsm" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBGSM "$ac_cv_lib_soname_gsm" -_ACEOF +printf "%s\n" "#define SONAME_LIBGSM "$ac_cv_lib_soname_gsm"" >>confdefs.h
fi fi -if test "x$ac_cv_lib_soname_gsm" = "x"; then : +if test "x$ac_cv_lib_soname_gsm" = "x" +then : case "x$with_gsm" in x) as_fn_append wine_notices "|libgsm ${notice_platform}development files not found, gsm 06.10 codec won't be supported." ;; xno) ;; @@ -15649,42 +17903,42 @@ fi
if test "x$with_krb5" != "xno" then - if ${KRB5_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${KRB5_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : KRB5_CFLAGS=`$PKG_CONFIG --cflags krb5 2>/dev/null` fi fi test "$cross_compiling" = yes || KRB5_CFLAGS=${KRB5_CFLAGS:-`${KRB5_CONFIG:-krb5-config} --cflags 2>/dev/null`} -if ${KRB5_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${KRB5_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : KRB5_LIBS=`$PKG_CONFIG --libs krb5 2>/dev/null` fi fi test "$cross_compiling" = yes || KRB5_LIBS=${KRB5_LIBS:-`${KRB5_CONFIG:-krb5-config} --libs 2>/dev/null`}
-$as_echo "$as_me:${as_lineno-$LINENO}: krb5 cflags: $KRB5_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: krb5 libs: $KRB5_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: krb5 cflags: $KRB5_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: krb5 libs: $KRB5_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $KRB5_CFLAGS" -for ac_header in krb5/krb5.h -do : - ac_fn_c_check_header_mongrel "$LINENO" "krb5/krb5.h" "ac_cv_header_krb5_krb5_h" "$ac_includes_default" -if test "x$ac_cv_header_krb5_krb5_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_KRB5_KRB5_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "krb5/krb5.h" "ac_cv_header_krb5_krb5_h" "$ac_includes_default" +if test "x$ac_cv_header_krb5_krb5_h" = xyes +then : + printf "%s\n" "#define HAVE_KRB5_KRB5_H 1" >>confdefs.h
fi
-done - if test "$ac_cv_header_krb5_krb5_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lkrb5" >&5 -$as_echo_n "checking for -lkrb5... " >&6; } -if ${ac_cv_lib_soname_krb5+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lkrb5" >&5 +printf %s "checking for -lkrb5... " >&6; } +if test ${ac_cv_lib_soname_krb5+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lkrb5 $KRB5_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15693,45 +17947,43 @@ LIBS="-lkrb5 $KRB5_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char krb5_is_config_principal (); int -main () +main (void) { return krb5_is_config_principal (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_krb5=`$ac_cv_path_LDD conftest.exe | grep "krb5" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_krb5=`$OTOOL -L conftest$ac_exeext | grep "libkrb5\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libkrb5.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_krb5=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libkrb5\.$LIBEXT" | sed -e "s/^.*\[\(libkrb5\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_krb5:+false} :; then : + if ${ac_cv_lib_soname_krb5:+false} : +then : ac_cv_lib_soname_krb5=`$LDD conftest$ac_exeext | grep "libkrb5\.$LIBEXT" | sed -e "s/^.*(libkrb5.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_krb5= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_krb5:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_krb5:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } KRB5_CFLAGS="" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_krb5" >&5 -$as_echo "$ac_cv_lib_soname_krb5" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_krb5" >&5 +printf "%s\n" "$ac_cv_lib_soname_krb5" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBKRB5 "$ac_cv_lib_soname_krb5" -_ACEOF +printf "%s\n" "#define SONAME_LIBKRB5 "$ac_cv_lib_soname_krb5"" >>confdefs.h
fi @@ -15741,7 +17993,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_krb5" = "x"; then : +if test "x$ac_cv_lib_soname_krb5" = "x" +then : case "x$with_krb5" in x) as_fn_append wine_notices "|libkrb5 ${notice_platform}development files not found (or too old), Kerberos won't be supported." ;; xno) ;; @@ -15754,43 +18007,48 @@ test "x$ac_cv_lib_soname_krb5" != "x" || with_gssapi=${with_gssapi:-no}
if test "x$with_gssapi" != "xno" then - if ${GSSAPI_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${GSSAPI_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : GSSAPI_CFLAGS=`$PKG_CONFIG --cflags krb5-gssapi 2>/dev/null` fi fi test "$cross_compiling" = yes || GSSAPI_CFLAGS=${GSSAPI_CFLAGS:-`${KRB5_CONFIG:-krb5-config} --cflags gssapi 2>/dev/null`} -if ${GSSAPI_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${GSSAPI_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : GSSAPI_LIBS=`$PKG_CONFIG --libs krb5-gssapi 2>/dev/null` fi fi test "$cross_compiling" = yes || GSSAPI_LIBS=${GSSAPI_LIBS:-`${KRB5_CONFIG:-krb5-config} --libs gssapi 2>/dev/null`}
-$as_echo "$as_me:${as_lineno-$LINENO}: krb5-gssapi cflags: $GSSAPI_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: krb5-gssapi libs: $GSSAPI_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: krb5-gssapi cflags: $GSSAPI_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: krb5-gssapi libs: $GSSAPI_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $GSSAPI_CFLAGS" -for ac_header in gssapi/gssapi.h gssapi/gssapi_ext.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test "x$"$as_ac_Header"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "gssapi/gssapi.h" "ac_cv_header_gssapi_gssapi_h" "$ac_includes_default" +if test "x$ac_cv_header_gssapi_gssapi_h" = xyes +then : + printf "%s\n" "#define HAVE_GSSAPI_GSSAPI_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "gssapi/gssapi_ext.h" "ac_cv_header_gssapi_gssapi_ext_h" "$ac_includes_default" +if test "x$ac_cv_header_gssapi_gssapi_ext_h" = xyes +then : + printf "%s\n" "#define HAVE_GSSAPI_GSSAPI_EXT_H 1" >>confdefs.h
-done +fi
if test "$ac_cv_header_gssapi_gssapi_h" = "yes" -a "$ac_cv_header_gssapi_gssapi_ext_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lgssapi_krb5" >&5 -$as_echo_n "checking for -lgssapi_krb5... " >&6; } -if ${ac_cv_lib_soname_gssapi_krb5+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lgssapi_krb5" >&5 +printf %s "checking for -lgssapi_krb5... " >&6; } +if test ${ac_cv_lib_soname_gssapi_krb5+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lgssapi_krb5 $GSSAPI_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15799,45 +18057,43 @@ LIBS="-lgssapi_krb5 $GSSAPI_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gss_init_sec_context (); int -main () +main (void) { return gss_init_sec_context (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_gssapi_krb5=`$ac_cv_path_LDD conftest.exe | grep "gssapi_krb5" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_gssapi_krb5=`$OTOOL -L conftest$ac_exeext | grep "libgssapi_krb5\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libgssapi_krb5.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_gssapi_krb5=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libgssapi_krb5\.$LIBEXT" | sed -e "s/^.*\[\(libgssapi_krb5\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_gssapi_krb5:+false} :; then : + if ${ac_cv_lib_soname_gssapi_krb5:+false} : +then : ac_cv_lib_soname_gssapi_krb5=`$LDD conftest$ac_exeext | grep "libgssapi_krb5\.$LIBEXT" | sed -e "s/^.*(libgssapi_krb5.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_gssapi_krb5= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_gssapi_krb5:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_gssapi_krb5:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } GSSAPI_CFLAGS="" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_gssapi_krb5" >&5 -$as_echo "$ac_cv_lib_soname_gssapi_krb5" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_gssapi_krb5" >&5 +printf "%s\n" "$ac_cv_lib_soname_gssapi_krb5" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBGSSAPI_KRB5 "$ac_cv_lib_soname_gssapi_krb5" -_ACEOF +printf "%s\n" "#define SONAME_LIBGSSAPI_KRB5 "$ac_cv_lib_soname_gssapi_krb5"" >>confdefs.h
fi @@ -15847,7 +18103,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_gssapi_krb5" = "x"; then : +if test "x$ac_cv_lib_soname_gssapi_krb5" = "x" +then : case "x$with_gssapi" in x) as_fn_append wine_notices "|libgssapi_krb5 ${notice_platform}development files not found (or too old), no Kerberos SSP support." ;; xno) ;; @@ -15859,42 +18116,42 @@ fi
if test "x$with_jpeg" != "xno" then - if ${JPEG_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${JPEG_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : JPEG_CFLAGS=`$PKG_CONFIG --cflags libjpeg 2>/dev/null` fi fi
-if ${JPEG_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${JPEG_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : JPEG_LIBS=`$PKG_CONFIG --libs libjpeg 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: libjpeg cflags: $JPEG_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libjpeg libs: $JPEG_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libjpeg cflags: $JPEG_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libjpeg libs: $JPEG_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $JPEG_CFLAGS" -for ac_header in jpeglib.h -do : - ac_fn_c_check_header_mongrel "$LINENO" "jpeglib.h" "ac_cv_header_jpeglib_h" "$ac_includes_default" -if test "x$ac_cv_header_jpeglib_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_JPEGLIB_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "jpeglib.h" "ac_cv_header_jpeglib_h" "$ac_includes_default" +if test "x$ac_cv_header_jpeglib_h" = xyes +then : + printf "%s\n" "#define HAVE_JPEGLIB_H 1" >>confdefs.h
fi
-done - if test "$ac_cv_header_jpeglib_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -ljpeg" >&5 -$as_echo_n "checking for -ljpeg... " >&6; } -if ${ac_cv_lib_soname_jpeg+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -ljpeg" >&5 +printf %s "checking for -ljpeg... " >&6; } +if test ${ac_cv_lib_soname_jpeg+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-ljpeg $JPEG_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15902,46 +18159,44 @@ LIBS="-ljpeg $JPEG_LIBS $LIBS"
/* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif + builtin and then its argument prototype would still apply. */ char jpeg_start_decompress (); int -main () +main (void) { return jpeg_start_decompress (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_jpeg=`$ac_cv_path_LDD conftest.exe | grep "jpeg" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_jpeg=`$OTOOL -L conftest$ac_exeext | grep "libjpeg\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libjpeg.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_jpeg=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libjpeg\.$LIBEXT" | sed -e "s/^.*\[\(libjpeg\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_jpeg:+false} :; then : + if ${ac_cv_lib_soname_jpeg:+false} : +then : ac_cv_lib_soname_jpeg=`$LDD conftest$ac_exeext | grep "libjpeg\.$LIBEXT" | sed -e "s/^.*(libjpeg.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_jpeg= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_jpeg:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_jpeg:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } JPEG_CFLAGS="" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_jpeg" >&5 -$as_echo "$ac_cv_lib_soname_jpeg" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_jpeg" >&5 +printf "%s\n" "$ac_cv_lib_soname_jpeg" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBJPEG "$ac_cv_lib_soname_jpeg" -_ACEOF +printf "%s\n" "#define SONAME_LIBJPEG "$ac_cv_lib_soname_jpeg"" >>confdefs.h
fi @@ -15951,7 +18206,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_jpeg" = "x"; then : +if test "x$ac_cv_lib_soname_jpeg" = "x" +then : case "x$with_jpeg" in x) as_fn_append wine_warnings "|libjpeg ${notice_platform}development files not found, JPEG won't be supported." ;; xno) ;; @@ -15963,43 +18219,43 @@ fi
if test "x$with_jxrlib" != "xno" then - if ${JXRLIB_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${JXRLIB_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : JXRLIB_CFLAGS=`$PKG_CONFIG --cflags jxrlib 2>/dev/null` fi fi test "$cross_compiling" = yes || JXRLIB_CFLAGS=${JXRLIB_CFLAGS:-${JXRLIB_CFLAGS:--I/usr/include/jxrlib}} -if ${JXRLIB_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${JXRLIB_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : JXRLIB_LIBS=`$PKG_CONFIG --libs jxrlib 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: jxrlib cflags: $JXRLIB_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: jxrlib libs: $JXRLIB_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: jxrlib cflags: $JXRLIB_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: jxrlib libs: $JXRLIB_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $JXRLIB_CFLAGS" -for ac_header in JXRGlue.h -do : - ac_fn_c_check_header_compile "$LINENO" "JXRGlue.h" "ac_cv_header_JXRGlue_h" "#define FAR +ac_fn_c_check_header_compile "$LINENO" "JXRGlue.h" "ac_cv_header_JXRGlue_h" "#define FAR " -if test "x$ac_cv_header_JXRGlue_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_JXRGLUE_H 1 -_ACEOF +if test "x$ac_cv_header_JXRGlue_h" = xyes +then : + printf "%s\n" "#define HAVE_JXRGLUE_H 1" >>confdefs.h
fi
-done - if test "$ac_cv_header_JXRGlue_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -ljxrglue" >&5 -$as_echo_n "checking for -ljxrglue... " >&6; } -if ${ac_cv_lib_soname_jxrglue+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -ljxrglue" >&5 +printf %s "checking for -ljxrglue... " >&6; } +if test ${ac_cv_lib_soname_jxrglue+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-ljxrglue $JXRLIB_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16008,45 +18264,43 @@ LIBS="-ljxrglue $JXRLIB_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char PKImageDecode_Create_WMP (); int -main () +main (void) { return PKImageDecode_Create_WMP (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_jxrglue=`$ac_cv_path_LDD conftest.exe | grep "jxrglue" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_jxrglue=`$OTOOL -L conftest$ac_exeext | grep "libjxrglue\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libjxrglue.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_jxrglue=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libjxrglue\.$LIBEXT" | sed -e "s/^.*\[\(libjxrglue\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_jxrglue:+false} :; then : + if ${ac_cv_lib_soname_jxrglue:+false} : +then : ac_cv_lib_soname_jxrglue=`$LDD conftest$ac_exeext | grep "libjxrglue\.$LIBEXT" | sed -e "s/^.*(libjxrglue.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_jxrglue= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_jxrglue:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_jxrglue:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } JXRLIB_CFLAGS="" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_jxrglue" >&5 -$as_echo "$ac_cv_lib_soname_jxrglue" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_jxrglue" >&5 +printf "%s\n" "$ac_cv_lib_soname_jxrglue" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBJXRGLUE "$ac_cv_lib_soname_jxrglue" -_ACEOF +printf "%s\n" "#define SONAME_LIBJXRGLUE "$ac_cv_lib_soname_jxrglue"" >>confdefs.h
fi @@ -16056,7 +18310,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_jxrglue" = "x"; then : +if test "x$ac_cv_lib_soname_jxrglue" = "x" +then : case "x$with_jxrlib" in x) as_fn_append wine_notices "|jxrlib ${notice_platform}development files not found, JPEG-XR won't be supported." ;; xno) ;; @@ -16068,42 +18323,42 @@ fi
if test "x$with_png" != "xno" then - if ${PNG_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${PNG_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : PNG_CFLAGS=`$PKG_CONFIG --cflags libpng 2>/dev/null` fi fi test "$cross_compiling" = yes || PNG_CFLAGS=${PNG_CFLAGS:-$X_CFLAGS} -if ${PNG_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${PNG_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : PNG_LIBS=`$PKG_CONFIG --libs libpng 2>/dev/null` fi fi test "$cross_compiling" = yes || PNG_LIBS=${PNG_LIBS:-$X_LIBS}
-$as_echo "$as_me:${as_lineno-$LINENO}: libpng cflags: $PNG_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libpng libs: $PNG_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libpng cflags: $PNG_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libpng libs: $PNG_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $PNG_CFLAGS" -for ac_header in png.h -do : - ac_fn_c_check_header_mongrel "$LINENO" "png.h" "ac_cv_header_png_h" "$ac_includes_default" -if test "x$ac_cv_header_png_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_PNG_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "png.h" "ac_cv_header_png_h" "$ac_includes_default" +if test "x$ac_cv_header_png_h" = xyes +then : + printf "%s\n" "#define HAVE_PNG_H 1" >>confdefs.h
fi
-done - if test "$ac_cv_header_png_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lpng" >&5 -$as_echo_n "checking for -lpng... " >&6; } -if ${ac_cv_lib_soname_png+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lpng" >&5 +printf %s "checking for -lpng... " >&6; } +if test ${ac_cv_lib_soname_png+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lpng $PNG_LIBS -lm -lz $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16112,45 +18367,43 @@ LIBS="-lpng $PNG_LIBS -lm -lz $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char png_create_read_struct (); int -main () +main (void) { return png_create_read_struct (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_png=`$ac_cv_path_LDD conftest.exe | grep "png" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_png=`$OTOOL -L conftest$ac_exeext | grep "libpng[0-9]*\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libpng[0-9]*.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_png=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libpng[0-9]*\.$LIBEXT" | sed -e "s/^.*\[\(libpng[0-9]*\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_png:+false} :; then : + if ${ac_cv_lib_soname_png:+false} : +then : ac_cv_lib_soname_png=`$LDD conftest$ac_exeext | grep "libpng[0-9]*\.$LIBEXT" | sed -e "s/^.*(libpng[0-9]*.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_png= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_png:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_png:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } PNG_CFLAGS="" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_png" >&5 -$as_echo "$ac_cv_lib_soname_png" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_png" >&5 +printf "%s\n" "$ac_cv_lib_soname_png" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBPNG "$ac_cv_lib_soname_png" -_ACEOF +printf "%s\n" "#define SONAME_LIBPNG "$ac_cv_lib_soname_png"" >>confdefs.h
fi @@ -16160,7 +18413,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_png" = "x"; then : +if test "x$ac_cv_lib_soname_png" = "x" +then : case "x$with_png" in x) as_fn_append wine_warnings "|libpng ${notice_platform}development files not found, PNG won't be supported." ;; xno) ;; @@ -16172,42 +18426,42 @@ fi
if test "x$with_tiff" != "xno" then - if ${TIFF_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${TIFF_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : TIFF_CFLAGS=`$PKG_CONFIG --cflags libtiff-4 2>/dev/null` fi fi
-if ${TIFF_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${TIFF_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : TIFF_LIBS=`$PKG_CONFIG --libs libtiff-4 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: libtiff-4 cflags: $TIFF_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libtiff-4 libs: $TIFF_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libtiff-4 cflags: $TIFF_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libtiff-4 libs: $TIFF_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $TIFF_CFLAGS" -for ac_header in tiffio.h -do : - ac_fn_c_check_header_mongrel "$LINENO" "tiffio.h" "ac_cv_header_tiffio_h" "$ac_includes_default" -if test "x$ac_cv_header_tiffio_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_TIFFIO_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "tiffio.h" "ac_cv_header_tiffio_h" "$ac_includes_default" +if test "x$ac_cv_header_tiffio_h" = xyes +then : + printf "%s\n" "#define HAVE_TIFFIO_H 1" >>confdefs.h
fi
-done - if test "$ac_cv_header_tiffio_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -ltiff" >&5 -$as_echo_n "checking for -ltiff... " >&6; } -if ${ac_cv_lib_soname_tiff+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -ltiff" >&5 +printf %s "checking for -ltiff... " >&6; } +if test ${ac_cv_lib_soname_tiff+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-ltiff $TIFF_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16216,45 +18470,43 @@ LIBS="-ltiff $TIFF_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char TIFFClientOpen (); int -main () +main (void) { return TIFFClientOpen (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_tiff=`$ac_cv_path_LDD conftest.exe | grep "tiff" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_tiff=`$OTOOL -L conftest$ac_exeext | grep "libtiff\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libtiff.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_tiff=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libtiff\.$LIBEXT" | sed -e "s/^.*\[\(libtiff\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_tiff:+false} :; then : + if ${ac_cv_lib_soname_tiff:+false} : +then : ac_cv_lib_soname_tiff=`$LDD conftest$ac_exeext | grep "libtiff\.$LIBEXT" | sed -e "s/^.*(libtiff.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_tiff= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_tiff:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_tiff:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_tiff" >&5 -$as_echo "$ac_cv_lib_soname_tiff" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_tiff" >&5 +printf "%s\n" "$ac_cv_lib_soname_tiff" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBTIFF "$ac_cv_lib_soname_tiff" -_ACEOF +printf "%s\n" "#define SONAME_LIBTIFF "$ac_cv_lib_soname_tiff"" >>confdefs.h
fi @@ -16262,7 +18514,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_tiff" = "x"; then : +if test "x$ac_cv_lib_soname_tiff" = "x" +then : case "x$with_tiff" in x) as_fn_append wine_notices "|libtiff ${notice_platform}development files not found, TIFF won't be supported." ;; xno) ;; @@ -16274,42 +18527,42 @@ fi
if test "x$with_mpg123" != "xno" then - if ${MPG123_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${MPG123_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : MPG123_CFLAGS=`$PKG_CONFIG --cflags libmpg123 2>/dev/null` fi fi
-if ${MPG123_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${MPG123_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : MPG123_LIBS=`$PKG_CONFIG --libs libmpg123 2>/dev/null` fi fi
MPG123_LIBS=${MPG123_LIBS:-"-lmpg123"} -$as_echo "$as_me:${as_lineno-$LINENO}: libmpg123 cflags: $MPG123_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libmpg123 libs: $MPG123_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libmpg123 cflags: $MPG123_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libmpg123 libs: $MPG123_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $MPG123_CFLAGS" -for ac_header in mpg123.h -do : - ac_fn_c_check_header_mongrel "$LINENO" "mpg123.h" "ac_cv_header_mpg123_h" "$ac_includes_default" -if test "x$ac_cv_header_mpg123_h" = xyes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_MPG123_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "mpg123.h" "ac_cv_header_mpg123_h" "$ac_includes_default" +if test "x$ac_cv_header_mpg123_h" = xyes +then : + printf "%s\n" "#define HAVE_MPG123_H 1" >>confdefs.h
fi
-done - if test "$ac_cv_header_mpg123_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mpg123_feed in -lmpg123" >&5 -$as_echo_n "checking for mpg123_feed in -lmpg123... " >&6; } -if ${ac_cv_lib_mpg123_mpg123_feed+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for mpg123_feed in -lmpg123" >&5 +printf %s "checking for mpg123_feed in -lmpg123... " >&6; } +if test ${ac_cv_lib_mpg123_mpg123_feed+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lmpg123 $MPG123_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16318,32 +18571,31 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char mpg123_feed (); int -main () +main (void) { return mpg123_feed (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_mpg123_mpg123_feed=yes -else +else $as_nop ac_cv_lib_mpg123_mpg123_feed=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mpg123_mpg123_feed" >&5 -$as_echo "$ac_cv_lib_mpg123_mpg123_feed" >&6; } -if test "x$ac_cv_lib_mpg123_mpg123_feed" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mpg123_mpg123_feed" >&5 +printf "%s\n" "$ac_cv_lib_mpg123_mpg123_feed" >&6; } +if test "x$ac_cv_lib_mpg123_mpg123_feed" = xyes +then : : -else +else $as_nop MPG123_LIBS="" fi
@@ -16354,7 +18606,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_mpg123_mpg123_feed" != xyes; then : +if test "x$ac_cv_lib_mpg123_mpg123_feed" != xyes +then : case "x$with_mpg123" in x) as_fn_append wine_notices "|libmpg123 ${notice_platform}development files not found (or too old), mp3 codec won't be supported." ;; xno) ;; @@ -16367,11 +18620,12 @@ test "x$ac_cv_lib_mpg123_mpg123_feed" = xyes || enable_mp3dmod=${enable_mp3dmod:
if test "$ac_cv_header_AL_al_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lopenal" >&5 -$as_echo_n "checking for -lopenal... " >&6; } -if ${ac_cv_lib_soname_openal+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lopenal" >&5 +printf %s "checking for -lopenal... " >&6; } +if test ${ac_cv_lib_soname_openal+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lopenal $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16380,57 +18634,54 @@ LIBS="-lopenal $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char alGetSource3i (); int -main () +main (void) { return alGetSource3i (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_openal=`$ac_cv_path_LDD conftest.exe | grep "openal" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_openal=`$OTOOL -L conftest$ac_exeext | grep "libopenal\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libopenal.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_openal=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libopenal\.$LIBEXT" | sed -e "s/^.*\[\(libopenal\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_openal:+false} :; then : + if ${ac_cv_lib_soname_openal:+false} : +then : ac_cv_lib_soname_openal=`$LDD conftest$ac_exeext | grep "libopenal\.$LIBEXT" | sed -e "s/^.*(libopenal.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_openal= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_openal:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_openal:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_openal" >&5 -$as_echo "$ac_cv_lib_soname_openal" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_openal" >&5 +printf "%s\n" "$ac_cv_lib_soname_openal" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBOPENAL "$ac_cv_lib_soname_openal" -_ACEOF +printf "%s\n" "#define SONAME_LIBOPENAL "$ac_cv_lib_soname_openal"" >>confdefs.h
OPENAL_LIBS="-lopenal"
ac_cv_lib_openal=yes
-cat >>confdefs.h <<_ACEOF -#define HAVE_OPENAL 1 -_ACEOF +printf "%s\n" "#define HAVE_OPENAL 1" >>confdefs.h
fi fi -if test "x$ac_cv_lib_openal" != xyes; then : +if test "x$ac_cv_lib_openal" != xyes +then : case "x$with_openal" in x) as_fn_append wine_notices "|libopenal ${notice_platform}development files not found (or too old), OpenAL won't be supported." ;; xno) ;; @@ -16481,11 +18732,12 @@ fi
if test "$ac_cv_header_libprocstat_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for procstat_open_sysctl in -lprocstat" >&5 -$as_echo_n "checking for procstat_open_sysctl in -lprocstat... " >&6; } -if ${ac_cv_lib_procstat_procstat_open_sysctl+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for procstat_open_sysctl in -lprocstat" >&5 +printf %s "checking for procstat_open_sysctl in -lprocstat... " >&6; } +if test ${ac_cv_lib_procstat_procstat_open_sysctl+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lprocstat $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16494,32 +18746,31 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char procstat_open_sysctl (); int -main () +main (void) { return procstat_open_sysctl (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_procstat_procstat_open_sysctl=yes -else +else $as_nop ac_cv_lib_procstat_procstat_open_sysctl=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_procstat_procstat_open_sysctl" >&5 -$as_echo "$ac_cv_lib_procstat_procstat_open_sysctl" >&6; } -if test "x$ac_cv_lib_procstat_procstat_open_sysctl" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_procstat_procstat_open_sysctl" >&5 +printf "%s\n" "$ac_cv_lib_procstat_procstat_open_sysctl" >&6; } +if test "x$ac_cv_lib_procstat_procstat_open_sysctl" = xyes +then :
-$as_echo "#define HAVE_LIBPROCSTAT 1" >>confdefs.h +printf "%s\n" "#define HAVE_LIBPROCSTAT 1" >>confdefs.h
PROCSTAT_LIBS="-lprocstat"
@@ -16527,11 +18778,12 @@ fi
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lodbc" >&5 -$as_echo_n "checking for -lodbc... " >&6; } -if ${ac_cv_lib_soname_odbc+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lodbc" >&5 +printf %s "checking for -lodbc... " >&6; } +if test ${ac_cv_lib_soname_odbc+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lodbc $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16540,76 +18792,77 @@ LIBS="-lodbc $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char SQLConnect (); int -main () +main (void) { return SQLConnect (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_odbc=`$ac_cv_path_LDD conftest.exe | grep "odbc" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_odbc=`$OTOOL -L conftest$ac_exeext | grep "libodbc\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libodbc.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_odbc=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libodbc\.$LIBEXT" | sed -e "s/^.*\[\(libodbc\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_odbc:+false} :; then : + if ${ac_cv_lib_soname_odbc:+false} : +then : ac_cv_lib_soname_odbc=`$LDD conftest$ac_exeext | grep "libodbc\.$LIBEXT" | sed -e "s/^.*(libodbc.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_odbc= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_odbc:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } - cat >>confdefs.h <<_ACEOF -#define SONAME_LIBODBC "libodbc.$LIBEXT" -_ACEOF +if ${ac_cv_lib_soname_odbc:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } + printf "%s\n" "#define SONAME_LIBODBC "libodbc.$LIBEXT"" >>confdefs.h
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_odbc" >&5 -$as_echo "$ac_cv_lib_soname_odbc" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_odbc" >&5 +printf "%s\n" "$ac_cv_lib_soname_odbc" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBODBC "$ac_cv_lib_soname_odbc" -_ACEOF +printf "%s\n" "#define SONAME_LIBODBC "$ac_cv_lib_soname_odbc"" >>confdefs.h
fi
if test "x$with_netapi" != "xno" then - if ${NETAPI_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${NETAPI_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : NETAPI_CFLAGS=`$PKG_CONFIG --cflags netapi 2>/dev/null` fi fi
-if ${NETAPI_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${NETAPI_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : NETAPI_LIBS=`$PKG_CONFIG --libs netapi 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: netapi cflags: $NETAPI_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: netapi libs: $NETAPI_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: netapi cflags: $NETAPI_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: netapi libs: $NETAPI_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $NETAPI_CFLAGS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lnetapi" >&5 -$as_echo_n "checking for -lnetapi... " >&6; } -if ${ac_cv_lib_soname_netapi+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lnetapi" >&5 +printf %s "checking for -lnetapi... " >&6; } +if test ${ac_cv_lib_soname_netapi+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lnetapi $NETAPI_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16618,48 +18871,44 @@ LIBS="-lnetapi $NETAPI_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char libnetapi_init (); int -main () +main (void) { return libnetapi_init (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_netapi=`$ac_cv_path_LDD conftest.exe | grep "netapi" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_netapi=`$OTOOL -L conftest$ac_exeext | grep "libnetapi\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libnetapi.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_netapi=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libnetapi\.$LIBEXT" | sed -e "s/^.*\[\(libnetapi\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_netapi:+false} :; then : + if ${ac_cv_lib_soname_netapi:+false} : +then : ac_cv_lib_soname_netapi=`$LDD conftest$ac_exeext | grep "libnetapi\.$LIBEXT" | sed -e "s/^.*(libnetapi.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_netapi= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_netapi:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } - cat >>confdefs.h <<_ACEOF -#define SONAME_LIBNETAPI "libnetapi.$LIBEXT" -_ACEOF +if ${ac_cv_lib_soname_netapi:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; } + printf "%s\n" "#define SONAME_LIBNETAPI "libnetapi.$LIBEXT"" >>confdefs.h
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_netapi" >&5 -$as_echo "$ac_cv_lib_soname_netapi" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_netapi" >&5 +printf "%s\n" "$ac_cv_lib_soname_netapi" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBNETAPI "$ac_cv_lib_soname_netapi" -_ACEOF +printf "%s\n" "#define SONAME_LIBNETAPI "$ac_cv_lib_soname_netapi"" >>confdefs.h
fi @@ -16675,11 +18924,12 @@ fi
if test "x$with_vulkan" != "xno" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lvulkan" >&5 -$as_echo_n "checking for -lvulkan... " >&6; } -if ${ac_cv_lib_soname_vulkan+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lvulkan" >&5 +printf %s "checking for -lvulkan... " >&6; } +if test ${ac_cv_lib_soname_vulkan+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lvulkan $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16688,55 +18938,54 @@ LIBS="-lvulkan $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char vkGetInstanceProcAddr (); int -main () +main (void) { return vkGetInstanceProcAddr (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_vulkan=`$ac_cv_path_LDD conftest.exe | grep "vulkan" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_vulkan=`$OTOOL -L conftest$ac_exeext | grep "libvulkan\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libvulkan.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_vulkan=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libvulkan\.$LIBEXT" | sed -e "s/^.*\[\(libvulkan\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_vulkan:+false} :; then : + if ${ac_cv_lib_soname_vulkan:+false} : +then : ac_cv_lib_soname_vulkan=`$LDD conftest$ac_exeext | grep "libvulkan\.$LIBEXT" | sed -e "s/^.*(libvulkan.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_vulkan= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_vulkan:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_vulkan:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_vulkan" >&5 -$as_echo "$ac_cv_lib_soname_vulkan" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_vulkan" >&5 +printf "%s\n" "$ac_cv_lib_soname_vulkan" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBVULKAN "$ac_cv_lib_soname_vulkan" -_ACEOF +printf "%s\n" "#define SONAME_LIBVULKAN "$ac_cv_lib_soname_vulkan"" >>confdefs.h
fi if test "x$ac_cv_lib_soname_vulkan" = "x" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lMoltenVK" >&5 -$as_echo_n "checking for -lMoltenVK... " >&6; } -if ${ac_cv_lib_soname_MoltenVK+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lMoltenVK" >&5 +printf %s "checking for -lMoltenVK... " >&6; } +if test ${ac_cv_lib_soname_MoltenVK+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lMoltenVK $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16745,51 +18994,50 @@ LIBS="-lMoltenVK $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char vkGetInstanceProcAddr (); int -main () +main (void) { return vkGetInstanceProcAddr (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_MoltenVK=`$ac_cv_path_LDD conftest.exe | grep "MoltenVK" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_MoltenVK=`$OTOOL -L conftest$ac_exeext | grep "libMoltenVK\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libMoltenVK.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_MoltenVK=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libMoltenVK\.$LIBEXT" | sed -e "s/^.*\[\(libMoltenVK\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_MoltenVK:+false} :; then : + if ${ac_cv_lib_soname_MoltenVK:+false} : +then : ac_cv_lib_soname_MoltenVK=`$LDD conftest$ac_exeext | grep "libMoltenVK\.$LIBEXT" | sed -e "s/^.*(libMoltenVK.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_MoltenVK= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_MoltenVK:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_MoltenVK:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_MoltenVK" >&5 -$as_echo "$ac_cv_lib_soname_MoltenVK" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_MoltenVK" >&5 +printf "%s\n" "$ac_cv_lib_soname_MoltenVK" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBMOLTENVK "$ac_cv_lib_soname_MoltenVK" -_ACEOF +printf "%s\n" "#define SONAME_LIBMOLTENVK "$ac_cv_lib_soname_MoltenVK"" >>confdefs.h
fi fi fi -if test "x$ac_cv_lib_soname_vulkan" = "x" -a "x$ac_cv_lib_soname_MoltenVK" = "x"; then : +if test "x$ac_cv_lib_soname_vulkan" = "x" -a "x$ac_cv_lib_soname_MoltenVK" = "x" +then : case "x$with_vulkan" in x) as_fn_append wine_notices "|libvulkan and libMoltenVK ${notice_platform}development files not found, Vulkan won't be supported." ;; xno) ;; @@ -16801,28 +19049,33 @@ fi
if test "x$with_vkd3d" != "xno" then - if ${VKD3D_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${VKD3D_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : VKD3D_CFLAGS=`$PKG_CONFIG --cflags libvkd3d 2>/dev/null` fi fi
-if ${VKD3D_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${VKD3D_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : VKD3D_LIBS=`$PKG_CONFIG --libs libvkd3d 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: libvkd3d cflags: $VKD3D_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libvkd3d libs: $VKD3D_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libvkd3d cflags: $VKD3D_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libvkd3d libs: $VKD3D_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $VKD3D_CFLAGS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lvkd3d" >&5 -$as_echo_n "checking for -lvkd3d... " >&6; } -if ${ac_cv_lib_soname_vkd3d+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lvkd3d" >&5 +printf %s "checking for -lvkd3d... " >&6; } +if test ${ac_cv_lib_soname_vkd3d+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lvkd3d $VKD3D_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16831,72 +19084,75 @@ LIBS="-lvkd3d $VKD3D_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char vkd3d_serialize_versioned_root_signature (); int -main () +main (void) { return vkd3d_serialize_versioned_root_signature (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_vkd3d=`$ac_cv_path_LDD conftest.exe | grep "vkd3d" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_vkd3d=`$OTOOL -L conftest$ac_exeext | grep "libvkd3d\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libvkd3d.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_vkd3d=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libvkd3d\.$LIBEXT" | sed -e "s/^.*\[\(libvkd3d\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_vkd3d:+false} :; then : + if ${ac_cv_lib_soname_vkd3d:+false} : +then : ac_cv_lib_soname_vkd3d=`$LDD conftest$ac_exeext | grep "libvkd3d\.$LIBEXT" | sed -e "s/^.*(libvkd3d.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_vkd3d= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_vkd3d:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_vkd3d:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_vkd3d" >&5 -$as_echo "$ac_cv_lib_soname_vkd3d" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_vkd3d" >&5 +printf "%s\n" "$ac_cv_lib_soname_vkd3d" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBVKD3D "$ac_cv_lib_soname_vkd3d" -_ACEOF +printf "%s\n" "#define SONAME_LIBVKD3D "$ac_cv_lib_soname_vkd3d"" >>confdefs.h
fi CPPFLAGS=$ac_save_CPPFLAGS
- if ${VKD3D_SHADER_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${VKD3D_SHADER_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : VKD3D_SHADER_CFLAGS=`$PKG_CONFIG --cflags libvkd3d-shader 2>/dev/null` fi fi
-if ${VKD3D_SHADER_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${VKD3D_SHADER_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : VKD3D_SHADER_LIBS=`$PKG_CONFIG --libs libvkd3d-shader 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: libvkd3d-shader cflags: $VKD3D_SHADER_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libvkd3d-shader libs: $VKD3D_SHADER_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libvkd3d-shader cflags: $VKD3D_SHADER_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libvkd3d-shader libs: $VKD3D_SHADER_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $VKD3D_SHADER_CFLAGS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lvkd3d-shader" >&5 -$as_echo_n "checking for -lvkd3d-shader... " >&6; } -if ${ac_cv_lib_soname_vkd3d_shader+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lvkd3d-shader" >&5 +printf %s "checking for -lvkd3d-shader... " >&6; } +if test ${ac_cv_lib_soname_vkd3d_shader+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lvkd3d-shader $VKD3D_SHADER_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16905,52 +19161,51 @@ LIBS="-lvkd3d-shader $VKD3D_SHADER_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char vkd3d_shader_compile (); int -main () +main (void) { return vkd3d_shader_compile (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_vkd3d_shader=`$ac_cv_path_LDD conftest.exe | grep "vkd3d-shader" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_vkd3d_shader=`$OTOOL -L conftest$ac_exeext | grep "libvkd3d-shader\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libvkd3d-shader.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_vkd3d_shader=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libvkd3d-shader\.$LIBEXT" | sed -e "s/^.*\[\(libvkd3d-shader\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'` - if ${ac_cv_lib_soname_vkd3d_shader:+false} :; then : + if ${ac_cv_lib_soname_vkd3d_shader:+false} : +then : ac_cv_lib_soname_vkd3d_shader=`$LDD conftest$ac_exeext | grep "libvkd3d-shader\.$LIBEXT" | sed -e "s/^.*(libvkd3d-shader.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_vkd3d_shader= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_vkd3d_shader:+false} :; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 -$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_vkd3d_shader:+false} : +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5 +printf "%s\n" "not found" >&6; }
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_vkd3d_shader" >&5 -$as_echo "$ac_cv_lib_soname_vkd3d_shader" >&6; } +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_vkd3d_shader" >&5 +printf "%s\n" "$ac_cv_lib_soname_vkd3d_shader" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBVKD3D_SHADER "$ac_cv_lib_soname_vkd3d_shader" -_ACEOF +printf "%s\n" "#define SONAME_LIBVKD3D_SHADER "$ac_cv_lib_soname_vkd3d_shader"" >>confdefs.h
fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_vkd3d" = "x"; then : +if test "x$ac_cv_lib_soname_vkd3d" = "x" +then : case "x$with_vkd3d" in x) as_fn_append wine_notices "|vkd3d ${notice_platform}development files not found (or too old), Direct3D 12 won't be supported." ;; xno) ;; @@ -16969,617 +19224,686 @@ then EXTRACFLAGS="-Wall -pipe"
saved_CFLAGS=$CFLAGS - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror=unknown-warning-option" >&5 -$as_echo_n "checking whether the compiler supports -Werror=unknown-warning-option... " >&6; } -if ${ac_cv_cflags__Werror_unknown_warning_option+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror=unknown-warning-option" >&5 +printf %s "checking whether the compiler supports -Werror=unknown-warning-option... " >&6; } +if test ${ac_cv_cflags__Werror_unknown_warning_option+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Werror=unknown-warning-option" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Werror_unknown_warning_option=yes -else +else $as_nop ac_cv_cflags__Werror_unknown_warning_option=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror_unknown_warning_option" >&5 -$as_echo "$ac_cv_cflags__Werror_unknown_warning_option" >&6; } -if test "x$ac_cv_cflags__Werror_unknown_warning_option" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror_unknown_warning_option" >&5 +printf "%s\n" "$ac_cv_cflags__Werror_unknown_warning_option" >&6; } +if test "x$ac_cv_cflags__Werror_unknown_warning_option" = xyes +then : CFLAGS="$CFLAGS -Werror=unknown-warning-option" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror=unused-command-line-argument" >&5 -$as_echo_n "checking whether the compiler supports -Werror=unused-command-line-argument... " >&6; } -if ${ac_cv_cflags__Werror_unused_command_line_argument+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror=unused-command-line-argument" >&5 +printf %s "checking whether the compiler supports -Werror=unused-command-line-argument... " >&6; } +if test ${ac_cv_cflags__Werror_unused_command_line_argument+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Werror=unused-command-line-argument" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Werror_unused_command_line_argument=yes -else +else $as_nop ac_cv_cflags__Werror_unused_command_line_argument=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror_unused_command_line_argument" >&5 -$as_echo "$ac_cv_cflags__Werror_unused_command_line_argument" >&6; } -if test "x$ac_cv_cflags__Werror_unused_command_line_argument" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror_unused_command_line_argument" >&5 +printf "%s\n" "$ac_cv_cflags__Werror_unused_command_line_argument" >&6; } +if test "x$ac_cv_cflags__Werror_unused_command_line_argument" = xyes +then : CFLAGS="$CFLAGS -Werror=unused-command-line-argument" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror=ignored-optimization-argument" >&5 -$as_echo_n "checking whether the compiler supports -Werror=ignored-optimization-argument... " >&6; } -if ${ac_cv_cflags__Werror_ignored_optimization_argument+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror=ignored-optimization-argument" >&5 +printf %s "checking whether the compiler supports -Werror=ignored-optimization-argument... " >&6; } +if test ${ac_cv_cflags__Werror_ignored_optimization_argument+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Werror=ignored-optimization-argument" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Werror_ignored_optimization_argument=yes -else +else $as_nop ac_cv_cflags__Werror_ignored_optimization_argument=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror_ignored_optimization_argument" >&5 -$as_echo "$ac_cv_cflags__Werror_ignored_optimization_argument" >&6; } -if test "x$ac_cv_cflags__Werror_ignored_optimization_argument" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror_ignored_optimization_argument" >&5 +printf "%s\n" "$ac_cv_cflags__Werror_ignored_optimization_argument" >&6; } +if test "x$ac_cv_cflags__Werror_ignored_optimization_argument" = xyes +then : CFLAGS="$CFLAGS -Werror=ignored-optimization-argument" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fcf-protection=none" >&5 -$as_echo_n "checking whether the compiler supports -fcf-protection=none... " >&6; } -if ${ac_cv_cflags__fcf_protection_none+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fcf-protection=none" >&5 +printf %s "checking whether the compiler supports -fcf-protection=none... " >&6; } +if test ${ac_cv_cflags__fcf_protection_none+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fcf-protection=none" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fcf_protection_none=yes -else +else $as_nop ac_cv_cflags__fcf_protection_none=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fcf_protection_none" >&5 -$as_echo "$ac_cv_cflags__fcf_protection_none" >&6; } -if test "x$ac_cv_cflags__fcf_protection_none" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fcf_protection_none" >&5 +printf "%s\n" "$ac_cv_cflags__fcf_protection_none" >&6; } +if test "x$ac_cv_cflags__fcf_protection_none" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -fcf-protection=none" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-stack-protector" >&5 -$as_echo_n "checking whether the compiler supports -fno-stack-protector... " >&6; } -if ${ac_cv_cflags__fno_stack_protector+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-stack-protector" >&5 +printf %s "checking whether the compiler supports -fno-stack-protector... " >&6; } +if test ${ac_cv_cflags__fno_stack_protector+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fno-stack-protector" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fno_stack_protector=yes -else +else $as_nop ac_cv_cflags__fno_stack_protector=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_stack_protector" >&5 -$as_echo "$ac_cv_cflags__fno_stack_protector" >&6; } -if test "x$ac_cv_cflags__fno_stack_protector" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_stack_protector" >&5 +printf "%s\n" "$ac_cv_cflags__fno_stack_protector" >&6; } +if test "x$ac_cv_cflags__fno_stack_protector" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -fno-stack-protector" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-strict-aliasing" >&5 -$as_echo_n "checking whether the compiler supports -fno-strict-aliasing... " >&6; } -if ${ac_cv_cflags__fno_strict_aliasing+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-strict-aliasing" >&5 +printf %s "checking whether the compiler supports -fno-strict-aliasing... " >&6; } +if test ${ac_cv_cflags__fno_strict_aliasing+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fno-strict-aliasing" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fno_strict_aliasing=yes -else +else $as_nop ac_cv_cflags__fno_strict_aliasing=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_strict_aliasing" >&5 -$as_echo "$ac_cv_cflags__fno_strict_aliasing" >&6; } -if test "x$ac_cv_cflags__fno_strict_aliasing" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_strict_aliasing" >&5 +printf "%s\n" "$ac_cv_cflags__fno_strict_aliasing" >&6; } +if test "x$ac_cv_cflags__fno_strict_aliasing" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -fno-strict-aliasing" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wdeclaration-after-statement" >&5 -$as_echo_n "checking whether the compiler supports -Wdeclaration-after-statement... " >&6; } -if ${ac_cv_cflags__Wdeclaration_after_statement+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wdeclaration-after-statement" >&5 +printf %s "checking whether the compiler supports -Wdeclaration-after-statement... " >&6; } +if test ${ac_cv_cflags__Wdeclaration_after_statement+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wdeclaration-after-statement" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wdeclaration_after_statement=yes -else +else $as_nop ac_cv_cflags__Wdeclaration_after_statement=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wdeclaration_after_statement" >&5 -$as_echo "$ac_cv_cflags__Wdeclaration_after_statement" >&6; } -if test "x$ac_cv_cflags__Wdeclaration_after_statement" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wdeclaration_after_statement" >&5 +printf "%s\n" "$ac_cv_cflags__Wdeclaration_after_statement" >&6; } +if test "x$ac_cv_cflags__Wdeclaration_after_statement" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wdeclaration-after-statement" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wempty-body" >&5 -$as_echo_n "checking whether the compiler supports -Wempty-body... " >&6; } -if ${ac_cv_cflags__Wempty_body+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wempty-body" >&5 +printf %s "checking whether the compiler supports -Wempty-body... " >&6; } +if test ${ac_cv_cflags__Wempty_body+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wempty-body" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wempty_body=yes -else +else $as_nop ac_cv_cflags__Wempty_body=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wempty_body" >&5 -$as_echo "$ac_cv_cflags__Wempty_body" >&6; } -if test "x$ac_cv_cflags__Wempty_body" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wempty_body" >&5 +printf "%s\n" "$ac_cv_cflags__Wempty_body" >&6; } +if test "x$ac_cv_cflags__Wempty_body" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wempty-body" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wignored-qualifiers" >&5 -$as_echo_n "checking whether the compiler supports -Wignored-qualifiers... " >&6; } -if ${ac_cv_cflags__Wignored_qualifiers+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wignored-qualifiers" >&5 +printf %s "checking whether the compiler supports -Wignored-qualifiers... " >&6; } +if test ${ac_cv_cflags__Wignored_qualifiers+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wignored-qualifiers" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wignored_qualifiers=yes -else +else $as_nop ac_cv_cflags__Wignored_qualifiers=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wignored_qualifiers" >&5 -$as_echo "$ac_cv_cflags__Wignored_qualifiers" >&6; } -if test "x$ac_cv_cflags__Wignored_qualifiers" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wignored_qualifiers" >&5 +printf "%s\n" "$ac_cv_cflags__Wignored_qualifiers" >&6; } +if test "x$ac_cv_cflags__Wignored_qualifiers" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wignored-qualifiers" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Winit-self" >&5 -$as_echo_n "checking whether the compiler supports -Winit-self... " >&6; } -if ${ac_cv_cflags__Winit_self+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Winit-self" >&5 +printf %s "checking whether the compiler supports -Winit-self... " >&6; } +if test ${ac_cv_cflags__Winit_self+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Winit-self" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Winit_self=yes -else +else $as_nop ac_cv_cflags__Winit_self=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Winit_self" >&5 -$as_echo "$ac_cv_cflags__Winit_self" >&6; } -if test "x$ac_cv_cflags__Winit_self" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Winit_self" >&5 +printf "%s\n" "$ac_cv_cflags__Winit_self" >&6; } +if test "x$ac_cv_cflags__Winit_self" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Winit-self" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wpacked-not-aligned" >&5 -$as_echo_n "checking whether the compiler supports -Wpacked-not-aligned... " >&6; } -if ${ac_cv_cflags__Wpacked_not_aligned+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wpacked-not-aligned" >&5 +printf %s "checking whether the compiler supports -Wpacked-not-aligned... " >&6; } +if test ${ac_cv_cflags__Wpacked_not_aligned+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wpacked-not-aligned" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wpacked_not_aligned=yes -else +else $as_nop ac_cv_cflags__Wpacked_not_aligned=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wpacked_not_aligned" >&5 -$as_echo "$ac_cv_cflags__Wpacked_not_aligned" >&6; } -if test "x$ac_cv_cflags__Wpacked_not_aligned" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wpacked_not_aligned" >&5 +printf "%s\n" "$ac_cv_cflags__Wpacked_not_aligned" >&6; } +if test "x$ac_cv_cflags__Wpacked_not_aligned" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wno-packed-not-aligned" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wpragma-pack" >&5 -$as_echo_n "checking whether the compiler supports -Wpragma-pack... " >&6; } -if ${ac_cv_cflags__Wpragma_pack+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wpragma-pack" >&5 +printf %s "checking whether the compiler supports -Wpragma-pack... " >&6; } +if test ${ac_cv_cflags__Wpragma_pack+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wpragma-pack" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wpragma_pack=yes -else +else $as_nop ac_cv_cflags__Wpragma_pack=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wpragma_pack" >&5 -$as_echo "$ac_cv_cflags__Wpragma_pack" >&6; } -if test "x$ac_cv_cflags__Wpragma_pack" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wpragma_pack" >&5 +printf "%s\n" "$ac_cv_cflags__Wpragma_pack" >&6; } +if test "x$ac_cv_cflags__Wpragma_pack" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wno-pragma-pack" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wshift-overflow=2" >&5 -$as_echo_n "checking whether the compiler supports -Wshift-overflow=2... " >&6; } -if ${ac_cv_cflags__Wshift_overflow_2+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wshift-overflow=2" >&5 +printf %s "checking whether the compiler supports -Wshift-overflow=2... " >&6; } +if test ${ac_cv_cflags__Wshift_overflow_2+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wshift-overflow=2" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wshift_overflow_2=yes -else +else $as_nop ac_cv_cflags__Wshift_overflow_2=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wshift_overflow_2" >&5 -$as_echo "$ac_cv_cflags__Wshift_overflow_2" >&6; } -if test "x$ac_cv_cflags__Wshift_overflow_2" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wshift_overflow_2" >&5 +printf "%s\n" "$ac_cv_cflags__Wshift_overflow_2" >&6; } +if test "x$ac_cv_cflags__Wshift_overflow_2" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wshift-overflow=2" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wstrict-prototypes" >&5 -$as_echo_n "checking whether the compiler supports -Wstrict-prototypes... " >&6; } -if ${ac_cv_cflags__Wstrict_prototypes+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wstrict-prototypes" >&5 +printf %s "checking whether the compiler supports -Wstrict-prototypes... " >&6; } +if test ${ac_cv_cflags__Wstrict_prototypes+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wstrict-prototypes" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wstrict_prototypes=yes -else +else $as_nop ac_cv_cflags__Wstrict_prototypes=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wstrict_prototypes" >&5 -$as_echo "$ac_cv_cflags__Wstrict_prototypes" >&6; } -if test "x$ac_cv_cflags__Wstrict_prototypes" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wstrict_prototypes" >&5 +printf "%s\n" "$ac_cv_cflags__Wstrict_prototypes" >&6; } +if test "x$ac_cv_cflags__Wstrict_prototypes" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wstrict-prototypes" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wtype-limits" >&5 -$as_echo_n "checking whether the compiler supports -Wtype-limits... " >&6; } -if ${ac_cv_cflags__Wtype_limits+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wtype-limits" >&5 +printf %s "checking whether the compiler supports -Wtype-limits... " >&6; } +if test ${ac_cv_cflags__Wtype_limits+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wtype-limits" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wtype_limits=yes -else +else $as_nop ac_cv_cflags__Wtype_limits=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wtype_limits" >&5 -$as_echo "$ac_cv_cflags__Wtype_limits" >&6; } -if test "x$ac_cv_cflags__Wtype_limits" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wtype_limits" >&5 +printf "%s\n" "$ac_cv_cflags__Wtype_limits" >&6; } +if test "x$ac_cv_cflags__Wtype_limits" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wtype-limits" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wunused-but-set-parameter" >&5 -$as_echo_n "checking whether the compiler supports -Wunused-but-set-parameter... " >&6; } -if ${ac_cv_cflags__Wunused_but_set_parameter+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wunused-but-set-parameter" >&5 +printf %s "checking whether the compiler supports -Wunused-but-set-parameter... " >&6; } +if test ${ac_cv_cflags__Wunused_but_set_parameter+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wunused-but-set-parameter" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wunused_but_set_parameter=yes -else +else $as_nop ac_cv_cflags__Wunused_but_set_parameter=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wunused_but_set_parameter" >&5 -$as_echo "$ac_cv_cflags__Wunused_but_set_parameter" >&6; } -if test "x$ac_cv_cflags__Wunused_but_set_parameter" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wunused_but_set_parameter" >&5 +printf "%s\n" "$ac_cv_cflags__Wunused_but_set_parameter" >&6; } +if test "x$ac_cv_cflags__Wunused_but_set_parameter" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wunused-but-set-parameter" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wvla" >&5 -$as_echo_n "checking whether the compiler supports -Wvla... " >&6; } -if ${ac_cv_cflags__Wvla+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wvla" >&5 +printf %s "checking whether the compiler supports -Wvla... " >&6; } +if test ${ac_cv_cflags__Wvla+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wvla" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wvla=yes -else +else $as_nop ac_cv_cflags__Wvla=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wvla" >&5 -$as_echo "$ac_cv_cflags__Wvla" >&6; } -if test "x$ac_cv_cflags__Wvla" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wvla" >&5 +printf "%s\n" "$ac_cv_cflags__Wvla" >&6; } +if test "x$ac_cv_cflags__Wvla" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wvla" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wwrite-strings" >&5 -$as_echo_n "checking whether the compiler supports -Wwrite-strings... " >&6; } -if ${ac_cv_cflags__Wwrite_strings+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wwrite-strings" >&5 +printf %s "checking whether the compiler supports -Wwrite-strings... " >&6; } +if test ${ac_cv_cflags__Wwrite_strings+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wwrite-strings" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wwrite_strings=yes -else +else $as_nop ac_cv_cflags__Wwrite_strings=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wwrite_strings" >&5 -$as_echo "$ac_cv_cflags__Wwrite_strings" >&6; } -if test "x$ac_cv_cflags__Wwrite_strings" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wwrite_strings" >&5 +printf "%s\n" "$ac_cv_cflags__Wwrite_strings" >&6; } +if test "x$ac_cv_cflags__Wwrite_strings" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wwrite-strings" fi
if test -z "$CROSSTARGET" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fexcess-precision=standard" >&5 -$as_echo_n "checking whether the compiler supports -fexcess-precision=standard... " >&6; } -if ${ac_cv_cflags__fexcess_precision_standard+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fexcess-precision=standard" >&5 +printf %s "checking whether the compiler supports -fexcess-precision=standard... " >&6; } +if test ${ac_cv_cflags__fexcess_precision_standard+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fexcess-precision=standard" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fexcess_precision_standard=yes -else +else $as_nop ac_cv_cflags__fexcess_precision_standard=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fexcess_precision_standard" >&5 -$as_echo "$ac_cv_cflags__fexcess_precision_standard" >&6; } -if test "x$ac_cv_cflags__fexcess_precision_standard" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fexcess_precision_standard" >&5 +printf "%s\n" "$ac_cv_cflags__fexcess_precision_standard" >&6; } +if test "x$ac_cv_cflags__fexcess_precision_standard" = xyes +then : EXCESS_PRECISION_CFLAGS="-fexcess-precision=standard"
fi fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wpointer-arith" >&5 -$as_echo_n "checking whether the compiler supports -Wpointer-arith... " >&6; } -if ${ac_cv_cflags__Wpointer_arith+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wpointer-arith" >&5 +printf %s "checking whether the compiler supports -Wpointer-arith... " >&6; } +if test ${ac_cv_cflags__Wpointer_arith+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wpointer-arith" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wpointer_arith=yes -else +else $as_nop ac_cv_cflags__Wpointer_arith=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wpointer_arith" >&5 -$as_echo "$ac_cv_cflags__Wpointer_arith" >&6; } -if test "x$ac_cv_cflags__Wpointer_arith" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wpointer_arith" >&5 +printf "%s\n" "$ac_cv_cflags__Wpointer_arith" >&6; } +if test "x$ac_cv_cflags__Wpointer_arith" = xyes +then : saved_string_h_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -Wpointer-arith -Werror" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for broken string.h that generates warnings with -Wpointer-arith" >&5 -$as_echo_n "checking for broken string.h that generates warnings with -Wpointer-arith... " >&6; } -if ${ac_cv_c_string_h_warnings+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for broken string.h that generates warnings with -Wpointer-arith" >&5 +printf %s "checking for broken string.h that generates warnings with -Wpointer-arith... " >&6; } +if test ${ac_cv_c_string_h_warnings+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <string.h> int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_c_string_h_warnings=no -else +else $as_nop ac_cv_c_string_h_warnings=yes fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_string_h_warnings" >&5 -$as_echo "$ac_cv_c_string_h_warnings" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_string_h_warnings" >&5 +printf "%s\n" "$ac_cv_c_string_h_warnings" >&6; } test "$ac_cv_c_string_h_warnings" = yes || EXTRACFLAGS="$EXTRACFLAGS -Wpointer-arith" CFLAGS=$saved_string_h_CFLAGS fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wlogical-op" >&5 -$as_echo_n "checking whether the compiler supports -Wlogical-op... " >&6; } -if ${ac_cv_cflags__Wlogical_op+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wlogical-op" >&5 +printf %s "checking whether the compiler supports -Wlogical-op... " >&6; } +if test ${ac_cv_cflags__Wlogical_op+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wlogical-op" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wlogical_op=yes -else +else $as_nop ac_cv_cflags__Wlogical_op=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wlogical_op" >&5 -$as_echo "$ac_cv_cflags__Wlogical_op" >&6; } -if test "x$ac_cv_cflags__Wlogical_op" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wlogical_op" >&5 +printf "%s\n" "$ac_cv_cflags__Wlogical_op" >&6; } +if test "x$ac_cv_cflags__Wlogical_op" = xyes +then : saved_string_h_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -Wlogical-op -Werror" - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for broken string.h that generates warnings with -Wlogical-op" >&5 -$as_echo_n "checking for broken string.h that generates warnings with -Wlogical-op... " >&6; } -if ${ac_cv_c_logicalop_noisy+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for broken string.h that generates warnings with -Wlogical-op" >&5 +printf %s "checking for broken string.h that generates warnings with -Wlogical-op... " >&6; } +if test ${ac_cv_c_logicalop_noisy+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <string.h> char*f(const char *h,char n) {return strchr(h,n);} int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_c_logicalop_noisy=no -else +else $as_nop ac_cv_c_logicalop_noisy=yes fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_logicalop_noisy" >&5 -$as_echo "$ac_cv_c_logicalop_noisy" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_logicalop_noisy" >&5 +printf "%s\n" "$ac_cv_c_logicalop_noisy" >&6; } CFLAGS=$saved_string_h_CFLAGS test "$ac_cv_c_logicalop_noisy" = yes || EXTRACFLAGS="$EXTRACFLAGS -Wlogical-op" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for flags needed for 64-bit compare-and-swap support" >&5 -$as_echo_n "checking for flags needed for 64-bit compare-and-swap support... " >&6; } -if ${wine_cv_64bit_compare_swap+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for flags needed for 64-bit compare-and-swap support" >&5 +printf %s "checking for flags needed for 64-bit compare-and-swap support... " >&6; } +if test ${wine_cv_64bit_compare_swap+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 #error no #endif int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : wine_cv_64bit_compare_swap="none needed" -else +else $as_nop case $host_cpu in *i[3456]86*) wine_cv_64bit_compare_swap="-march=i586" ;; *arm*) wine_cv_64bit_compare_swap="-march=armv7-a" ;; @@ -17594,26 +19918,27 @@ else #error no #endif int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then :
-else +else $as_nop wine_cv_64bit_compare_swap="unknown" fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext CFLAGS=$saved_CFLAGS fi fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_64bit_compare_swap" >&5 -$as_echo "$wine_cv_64bit_compare_swap" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_64bit_compare_swap" >&5 +printf "%s\n" "$wine_cv_64bit_compare_swap" >&6; } case "$wine_cv_64bit_compare_swap" in unknown) as_fn_error $? "gcc doesn't support 64-bit compare-and-swap on this platform" "$LINENO" 5 ;; "none needed") ;; @@ -17622,54 +19947,60 @@ $as_echo "$wine_cv_64bit_compare_swap" >&6; }
for ac_flag in $CFLAGS; do case $ac_flag in - -g) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -gdwarf-2" >&5 -$as_echo_n "checking whether the compiler supports -gdwarf-2... " >&6; } -if ${ac_cv_cflags__gdwarf_2+:} false; then : - $as_echo_n "(cached) " >&6 -else + -g) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -gdwarf-2" >&5 +printf %s "checking whether the compiler supports -gdwarf-2... " >&6; } +if test ${ac_cv_cflags__gdwarf_2+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -gdwarf-2" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__gdwarf_2=yes -else +else $as_nop ac_cv_cflags__gdwarf_2=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__gdwarf_2" >&5 -$as_echo "$ac_cv_cflags__gdwarf_2" >&6; } -if test "x$ac_cv_cflags__gdwarf_2" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__gdwarf_2" >&5 +printf "%s\n" "$ac_cv_cflags__gdwarf_2" >&6; } +if test "x$ac_cv_cflags__gdwarf_2" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -gdwarf-2" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -gstrict-dwarf" >&5 -$as_echo_n "checking whether the compiler supports -gstrict-dwarf... " >&6; } -if ${ac_cv_cflags__gstrict_dwarf+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -gstrict-dwarf" >&5 +printf %s "checking whether the compiler supports -gstrict-dwarf... " >&6; } +if test ${ac_cv_cflags__gstrict_dwarf+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -gstrict-dwarf" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__gstrict_dwarf=yes -else +else $as_nop ac_cv_cflags__gstrict_dwarf=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__gstrict_dwarf" >&5 -$as_echo "$ac_cv_cflags__gstrict_dwarf" >&6; } -if test "x$ac_cv_cflags__gstrict_dwarf" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__gstrict_dwarf" >&5 +printf "%s\n" "$ac_cv_cflags__gstrict_dwarf" >&6; } +if test "x$ac_cv_cflags__gstrict_dwarf" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -gstrict-dwarf" fi ;; esac @@ -17678,160 +20009,178 @@ fi ;; MSVCRTFLAGS=""
case $host_os in - mingw32*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-delayload,autoconftest.dll" >&5 -$as_echo_n "checking whether the compiler supports -Wl,-delayload,autoconftest.dll... " >&6; } -if ${ac_cv_cflags__Wl__delayload_autoconftest_dll+:} false; then : - $as_echo_n "(cached) " >&6 -else + mingw32*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-delayload,autoconftest.dll" >&5 +printf %s "checking whether the compiler supports -Wl,-delayload,autoconftest.dll... " >&6; } +if test ${ac_cv_cflags__Wl__delayload_autoconftest_dll+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,-delayload,autoconftest.dll" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl__delayload_autoconftest_dll=yes -else +else $as_nop ac_cv_cflags__Wl__delayload_autoconftest_dll=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__delayload_autoconftest_dll" >&5 -$as_echo "$ac_cv_cflags__Wl__delayload_autoconftest_dll" >&6; } -if test "x$ac_cv_cflags__Wl__delayload_autoconftest_dll" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__delayload_autoconftest_dll" >&5 +printf "%s\n" "$ac_cv_cflags__Wl__delayload_autoconftest_dll" >&6; } +if test "x$ac_cv_cflags__Wl__delayload_autoconftest_dll" = xyes +then : DELAYLOADFLAG="-Wl,-delayload,"
fi ;; - *) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-builtin" >&5 -$as_echo_n "checking whether the compiler supports -fno-builtin... " >&6; } -if ${ac_cv_cflags__fno_builtin+:} false; then : - $as_echo_n "(cached) " >&6 -else + *) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-builtin" >&5 +printf %s "checking whether the compiler supports -fno-builtin... " >&6; } +if test ${ac_cv_cflags__fno_builtin+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fno-builtin" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fno_builtin=yes -else +else $as_nop ac_cv_cflags__fno_builtin=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_builtin" >&5 -$as_echo "$ac_cv_cflags__fno_builtin" >&6; } -if test "x$ac_cv_cflags__fno_builtin" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_builtin" >&5 +printf "%s\n" "$ac_cv_cflags__fno_builtin" >&6; } +if test "x$ac_cv_cflags__fno_builtin" = xyes +then : MSVCRTFLAGS="$MSVCRTFLAGS -fno-builtin" fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fshort-wchar" >&5 -$as_echo_n "checking whether the compiler supports -fshort-wchar... " >&6; } -if ${ac_cv_cflags__fshort_wchar+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fshort-wchar" >&5 +printf %s "checking whether the compiler supports -fshort-wchar... " >&6; } +if test ${ac_cv_cflags__fshort_wchar+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fshort-wchar" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fshort_wchar=yes -else +else $as_nop ac_cv_cflags__fshort_wchar=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fshort_wchar" >&5 -$as_echo "$ac_cv_cflags__fshort_wchar" >&6; } -if test "x$ac_cv_cflags__fshort_wchar" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fshort_wchar" >&5 +printf "%s\n" "$ac_cv_cflags__fshort_wchar" >&6; } +if test "x$ac_cv_cflags__fshort_wchar" = xyes +then : MSVCRTFLAGS="$MSVCRTFLAGS -fshort-wchar" fi ;; esac
case $host_cpu in - *i[3456789]86*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-omit-frame-pointer" >&5 -$as_echo_n "checking whether the compiler supports -fno-omit-frame-pointer... " >&6; } -if ${ac_cv_cflags__fno_omit_frame_pointer+:} false; then : - $as_echo_n "(cached) " >&6 -else + *i[3456789]86*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-omit-frame-pointer" >&5 +printf %s "checking whether the compiler supports -fno-omit-frame-pointer... " >&6; } +if test ${ac_cv_cflags__fno_omit_frame_pointer+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fno-omit-frame-pointer" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fno_omit_frame_pointer=yes -else +else $as_nop ac_cv_cflags__fno_omit_frame_pointer=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_omit_frame_pointer" >&5 -$as_echo "$ac_cv_cflags__fno_omit_frame_pointer" >&6; } -if test "x$ac_cv_cflags__fno_omit_frame_pointer" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_omit_frame_pointer" >&5 +printf "%s\n" "$ac_cv_cflags__fno_omit_frame_pointer" >&6; } +if test "x$ac_cv_cflags__fno_omit_frame_pointer" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -fno-omit-frame-pointer" fi ;; *x86_64*) case $host_os in - cygwin*|mingw32*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wno-format" >&5 -$as_echo_n "checking whether the compiler supports -Wno-format... " >&6; } -if ${ac_cv_cflags__Wno_format+:} false; then : - $as_echo_n "(cached) " >&6 -else + cygwin*|mingw32*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wno-format" >&5 +printf %s "checking whether the compiler supports -Wno-format... " >&6; } +if test ${ac_cv_cflags__Wno_format+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wno-format" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wno_format=yes -else +else $as_nop ac_cv_cflags__Wno_format=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wno_format" >&5 -$as_echo "$ac_cv_cflags__Wno_format" >&6; } -if test "x$ac_cv_cflags__Wno_format" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wno_format" >&5 +printf "%s\n" "$ac_cv_cflags__Wno_format" >&6; } +if test "x$ac_cv_cflags__Wno_format" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wno-format" fi ;; - *) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -mabi=ms" >&5 -$as_echo_n "checking whether the compiler supports -mabi=ms... " >&6; } -if ${ac_cv_cflags__mabi_ms+:} false; then : - $as_echo_n "(cached) " >&6 -else + *) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -mabi=ms" >&5 +printf %s "checking whether the compiler supports -mabi=ms... " >&6; } +if test ${ac_cv_cflags__mabi_ms+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -mabi=ms" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__mabi_ms=yes -else +else $as_nop ac_cv_cflags__mabi_ms=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__mabi_ms" >&5 -$as_echo "$ac_cv_cflags__mabi_ms" >&6; } -if test "x$ac_cv_cflags__mabi_ms" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__mabi_ms" >&5 +printf "%s\n" "$ac_cv_cflags__mabi_ms" >&6; } +if test "x$ac_cv_cflags__mabi_ms" = xyes +then : MSVCRTFLAGS="$MSVCRTFLAGS -mabi=ms" fi ;; esac ;; @@ -17841,57 +20190,63 @@ fi ;;
if test "x$enable_werror" = "xyes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror" >&5 -$as_echo_n "checking whether the compiler supports -Werror... " >&6; } -if ${ac_cv_cflags__Werror+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror" >&5 +printf %s "checking whether the compiler supports -Werror... " >&6; } +if test ${ac_cv_cflags__Werror+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Werror" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Werror=yes -else +else $as_nop ac_cv_cflags__Werror=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror" >&5 -$as_echo "$ac_cv_cflags__Werror" >&6; } -if test "x$ac_cv_cflags__Werror" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror" >&5 +printf "%s\n" "$ac_cv_cflags__Werror" >&6; } +if test "x$ac_cv_cflags__Werror" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Werror" fi fi if test "x$enable_build_id" = "xyes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--build-id" >&5 -$as_echo_n "checking whether the compiler supports -Wl,--build-id... " >&6; } -if ${ac_cv_cflags__Wl___build_id+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--build-id" >&5 +printf %s "checking whether the compiler supports -Wl,--build-id... " >&6; } +if test ${ac_cv_cflags__Wl___build_id+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,--build-id" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl___build_id=yes -else +else $as_nop ac_cv_cflags__Wl___build_id=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___build_id" >&5 -$as_echo "$ac_cv_cflags__Wl___build_id" >&6; } -if test "x$ac_cv_cflags__Wl___build_id" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___build_id" >&5 +printf "%s\n" "$ac_cv_cflags__Wl___build_id" >&6; } +if test "x$ac_cv_cflags__Wl___build_id" = xyes +then : CFLAGS="$CFLAGS -Wl,--build-id" LDFLAGS="$LDFLAGS -Wl,--build-id" fi @@ -17899,16 +20254,17 @@ fi fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the need to disable Fortify" >&5 -$as_echo_n "checking for the need to disable Fortify... " >&6; } -if ${ac_cv_c_fortify_enabled+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for the need to disable Fortify" >&5 +printf %s "checking for the need to disable Fortify... " >&6; } +if test ${ac_cv_c_fortify_enabled+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <string.h> int -main () +main (void) { #if (defined(__USE_FORTIFY_LEVEL) && __USE_FORTIFY_LEVEL > 0) || (defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0) #error Fortify enabled @@ -17917,132 +20273,299 @@ main () return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_c_fortify_enabled=no -else +else $as_nop ac_cv_c_fortify_enabled=yes fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_fortify_enabled" >&5 -$as_echo "$ac_cv_c_fortify_enabled" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_fortify_enabled" >&5 +printf "%s\n" "$ac_cv_c_fortify_enabled" >&6; } if test "$ac_cv_c_fortify_enabled" = yes then CFLAGS="$CFLAGS -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0" fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CFI directives are supported in assembly code" >&5 -$as_echo_n "checking whether CFI directives are supported in assembly code... " >&6; } -if ${ac_cv_c_cfi_support+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether CFI directives are supported in assembly code" >&5 +printf %s "checking whether CFI directives are supported in assembly code... " >&6; } +if test ${ac_cv_c_cfi_support+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ asm(".text\nac_test:\t.cfi_startproc\n\t.long 0\n\t.cfi_endproc"); int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_c_cfi_support="yes" -else +else $as_nop ac_cv_c_cfi_support="no" fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_cfi_support" >&5 +printf "%s\n" "$ac_cv_c_cfi_support" >&6; } +if test "$ac_cv_c_cfi_support" = "yes" +then + DLLFLAGS="$DLLFLAGS -fasynchronous-unwind-tables" + LDDLLFLAGS="$LDDLLFLAGS -fasynchronous-unwind-tables" +else + if test "x$enable_win64" = "xyes" + then + as_fn_append wine_warnings "|building 64-bit Wine without support for CFI directives; exception handling will not work properly." + fi +fi + + +case $build_os in + cygwin*|mingw32*) TOOLSEXT=".exe" + ;; +esac + +case $host_os in + linux*) + case $host_cpu in + *i[3456789]86*|x86_64*|*aarch64*|arm*) + test "$wine_binary" = wine || wine_fn_append_file CONFIGURE_TARGETS "loader/wine-preloader" + WINELOADER_PROGRAMS="$WINELOADER_PROGRAMS $wine_binary-preloader" + ;; + esac + ;; +esac + + +ac_save_CFLAGS="$CFLAGS" +CFLAGS="$CFLAGS $BUILTINFLAG" +ac_fn_c_check_func "$LINENO" "__res_get_state" "ac_cv_func___res_get_state" +if test "x$ac_cv_func___res_get_state" = xyes +then : + printf "%s\n" "#define HAVE___RES_GET_STATE 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "__res_getservers" "ac_cv_func___res_getservers" +if test "x$ac_cv_func___res_getservers" = xyes +then : + printf "%s\n" "#define HAVE___RES_GETSERVERS 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "_spawnvp" "ac_cv_func__spawnvp" +if test "x$ac_cv_func__spawnvp" = xyes +then : + printf "%s\n" "#define HAVE__SPAWNVP 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "epoll_create" "ac_cv_func_epoll_create" +if test "x$ac_cv_func_epoll_create" = xyes +then : + printf "%s\n" "#define HAVE_EPOLL_CREATE 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "fnmatch" "ac_cv_func_fnmatch" +if test "x$ac_cv_func_fnmatch" = xyes +then : + printf "%s\n" "#define HAVE_FNMATCH 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "fork" "ac_cv_func_fork" +if test "x$ac_cv_func_fork" = xyes +then : + printf "%s\n" "#define HAVE_FORK 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "fstatfs" "ac_cv_func_fstatfs" +if test "x$ac_cv_func_fstatfs" = xyes +then : + printf "%s\n" "#define HAVE_FSTATFS 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "futimens" "ac_cv_func_futimens" +if test "x$ac_cv_func_futimens" = xyes +then : + printf "%s\n" "#define HAVE_FUTIMENS 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "futimes" "ac_cv_func_futimes" +if test "x$ac_cv_func_futimes" = xyes +then : + printf "%s\n" "#define HAVE_FUTIMES 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "futimesat" "ac_cv_func_futimesat" +if test "x$ac_cv_func_futimesat" = xyes +then : + printf "%s\n" "#define HAVE_FUTIMESAT 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "getattrlist" "ac_cv_func_getattrlist" +if test "x$ac_cv_func_getattrlist" = xyes +then : + printf "%s\n" "#define HAVE_GETATTRLIST 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "getauxval" "ac_cv_func_getauxval" +if test "x$ac_cv_func_getauxval" = xyes +then : + printf "%s\n" "#define HAVE_GETAUXVAL 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "getifaddrs" "ac_cv_func_getifaddrs" +if test "x$ac_cv_func_getifaddrs" = xyes +then : + printf "%s\n" "#define HAVE_GETIFADDRS 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "getopt_long_only" "ac_cv_func_getopt_long_only" +if test "x$ac_cv_func_getopt_long_only" = xyes +then : + printf "%s\n" "#define HAVE_GETOPT_LONG_ONLY 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "getrandom" "ac_cv_func_getrandom" +if test "x$ac_cv_func_getrandom" = xyes +then : + printf "%s\n" "#define HAVE_GETRANDOM 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "kqueue" "ac_cv_func_kqueue" +if test "x$ac_cv_func_kqueue" = xyes +then : + printf "%s\n" "#define HAVE_KQUEUE 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "lstat" "ac_cv_func_lstat" +if test "x$ac_cv_func_lstat" = xyes +then : + printf "%s\n" "#define HAVE_LSTAT 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "mach_continuous_time" "ac_cv_func_mach_continuous_time" +if test "x$ac_cv_func_mach_continuous_time" = xyes +then : + printf "%s\n" "#define HAVE_MACH_CONTINUOUS_TIME 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "pipe2" "ac_cv_func_pipe2" +if test "x$ac_cv_func_pipe2" = xyes +then : + printf "%s\n" "#define HAVE_PIPE2 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "poll" "ac_cv_func_poll" +if test "x$ac_cv_func_poll" = xyes +then : + printf "%s\n" "#define HAVE_POLL 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "port_create" "ac_cv_func_port_create" +if test "x$ac_cv_func_port_create" = xyes +then : + printf "%s\n" "#define HAVE_PORT_CREATE 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "posix_fadvise" "ac_cv_func_posix_fadvise" +if test "x$ac_cv_func_posix_fadvise" = xyes +then : + printf "%s\n" "#define HAVE_POSIX_FADVISE 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "prctl" "ac_cv_func_prctl" +if test "x$ac_cv_func_prctl" = xyes +then : + printf "%s\n" "#define HAVE_PRCTL 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "pread" "ac_cv_func_pread" +if test "x$ac_cv_func_pread" = xyes +then : + printf "%s\n" "#define HAVE_PREAD 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "proc_pidinfo" "ac_cv_func_proc_pidinfo" +if test "x$ac_cv_func_proc_pidinfo" = xyes +then : + printf "%s\n" "#define HAVE_PROC_PIDINFO 1" >>confdefs.h + fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_cfi_support" >&5 -$as_echo "$ac_cv_c_cfi_support" >&6; } -if test "$ac_cv_c_cfi_support" = "yes" -then - DLLFLAGS="$DLLFLAGS -fasynchronous-unwind-tables" - LDDLLFLAGS="$LDDLLFLAGS -fasynchronous-unwind-tables" -else - if test "x$enable_win64" = "xyes" - then - as_fn_append wine_warnings "|building 64-bit Wine without support for CFI directives; exception handling will not work properly." - fi +ac_fn_c_check_func "$LINENO" "pwrite" "ac_cv_func_pwrite" +if test "x$ac_cv_func_pwrite" = xyes +then : + printf "%s\n" "#define HAVE_PWRITE 1" >>confdefs.h + fi +ac_fn_c_check_func "$LINENO" "readlink" "ac_cv_func_readlink" +if test "x$ac_cv_func_readlink" = xyes +then : + printf "%s\n" "#define HAVE_READLINK 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "sched_yield" "ac_cv_func_sched_yield" +if test "x$ac_cv_func_sched_yield" = xyes +then : + printf "%s\n" "#define HAVE_SCHED_YIELD 1" >>confdefs.h
-case $build_os in - cygwin*|mingw32*) TOOLSEXT=".exe" - ;; -esac +fi +ac_fn_c_check_func "$LINENO" "setproctitle" "ac_cv_func_setproctitle" +if test "x$ac_cv_func_setproctitle" = xyes +then : + printf "%s\n" "#define HAVE_SETPROCTITLE 1" >>confdefs.h
-case $host_os in - linux*) - case $host_cpu in - *i[3456789]86*|x86_64*|*aarch64*|arm*) - test "$wine_binary" = wine || wine_fn_append_file CONFIGURE_TARGETS "loader/wine-preloader" - WINELOADER_PROGRAMS="$WINELOADER_PROGRAMS $wine_binary-preloader" - ;; - esac - ;; -esac +fi +ac_fn_c_check_func "$LINENO" "setprogname" "ac_cv_func_setprogname" +if test "x$ac_cv_func_setprogname" = xyes +then : + printf "%s\n" "#define HAVE_SETPROGNAME 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "sigprocmask" "ac_cv_func_sigprocmask" +if test "x$ac_cv_func_sigprocmask" = xyes +then : + printf "%s\n" "#define HAVE_SIGPROCMASK 1" >>confdefs.h
-ac_save_CFLAGS="$CFLAGS" -CFLAGS="$CFLAGS $BUILTINFLAG" -for ac_func in \ - __res_get_state \ - __res_getservers \ - _spawnvp \ - epoll_create \ - fnmatch \ - fork \ - fstatfs \ - futimens \ - futimes \ - futimesat \ - getattrlist \ - getauxval \ - getifaddrs \ - getopt_long_only \ - getrandom \ - kqueue \ - lstat \ - mach_continuous_time \ - pipe2 \ - poll \ - port_create \ - posix_fadvise \ - prctl \ - pread \ - proc_pidinfo \ - pwrite \ - readlink \ - sched_yield \ - setproctitle \ - setprogname \ - sigprocmask \ - symlink \ - sysinfo \ - tcdrain \ - thr_kill2 +fi +ac_fn_c_check_func "$LINENO" "symlink" "ac_cv_func_symlink" +if test "x$ac_cv_func_symlink" = xyes +then : + printf "%s\n" "#define HAVE_SYMLINK 1" >>confdefs.h
-do : - as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test "x$"$as_ac_var"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF +fi +ac_fn_c_check_func "$LINENO" "sysinfo" "ac_cv_func_sysinfo" +if test "x$ac_cv_func_sysinfo" = xyes +then : + printf "%s\n" "#define HAVE_SYSINFO 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "tcdrain" "ac_cv_func_tcdrain" +if test "x$ac_cv_func_tcdrain" = xyes +then : + printf "%s\n" "#define HAVE_TCDRAIN 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "thr_kill2" "ac_cv_func_thr_kill2" +if test "x$ac_cv_func_thr_kill2" = xyes +then : + printf "%s\n" "#define HAVE_THR_KILL2 1" >>confdefs.h
fi -done
CFLAGS="$ac_save_CFLAGS"
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing dlopen" >&5 -$as_echo_n "checking for library containing dlopen... " >&6; } -if ${ac_cv_search_dlopen+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing dlopen" >&5 +printf %s "checking for library containing dlopen... " >&6; } +if test ${ac_cv_search_dlopen+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -18050,73 +20573,77 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char dlopen (); int -main () +main (void) { return dlopen (); ; return 0; } _ACEOF -for ac_lib in '' dl; do +for ac_lib in '' dl +do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi - if ac_fn_c_try_link "$LINENO"; then : + if ac_fn_c_try_link "$LINENO" +then : ac_cv_search_dlopen=$ac_res fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext - if ${ac_cv_search_dlopen+:} false; then : + if test ${ac_cv_search_dlopen+y} +then : break fi done -if ${ac_cv_search_dlopen+:} false; then : +if test ${ac_cv_search_dlopen+y} +then :
-else +else $as_nop ac_cv_search_dlopen=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_dlopen" >&5 -$as_echo "$ac_cv_search_dlopen" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_dlopen" >&5 +printf "%s\n" "$ac_cv_search_dlopen" >&6; } ac_res=$ac_cv_search_dlopen -if test "$ac_res" != no; then : +if test "$ac_res" != no +then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
fi
ac_wine_check_funcs_save_LIBS="$LIBS" LIBS="$LIBS $DL_LIBS" -for ac_func in dladdr dlinfo -do : - as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test "x$"$as_ac_var"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_func "$LINENO" "dladdr" "ac_cv_func_dladdr" +if test "x$ac_cv_func_dladdr" = xyes +then : + printf "%s\n" "#define HAVE_DLADDR 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "dlinfo" "ac_cv_func_dlinfo" +if test "x$ac_cv_func_dlinfo" = xyes +then : + printf "%s\n" "#define HAVE_DLINFO 1" >>confdefs.h
fi -done
LIBS="$ac_wine_check_funcs_save_LIBS"
if test "$ac_cv_func_poll" = no then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for poll in -lpoll" >&5 -$as_echo_n "checking for poll in -lpoll... " >&6; } -if ${ac_cv_lib_poll_poll+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for poll in -lpoll" >&5 +printf %s "checking for poll in -lpoll... " >&6; } +if test ${ac_cv_lib_poll_poll+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lpoll $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -18125,42 +20652,42 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char poll (); int -main () +main (void) { return poll (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_poll_poll=yes -else +else $as_nop ac_cv_lib_poll_poll=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_poll_poll" >&5 -$as_echo "$ac_cv_lib_poll_poll" >&6; } -if test "x$ac_cv_lib_poll_poll" = xyes; then : - $as_echo "#define HAVE_POLL 1" >>confdefs.h +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_poll_poll" >&5 +printf "%s\n" "$ac_cv_lib_poll_poll" >&6; } +if test "x$ac_cv_lib_poll_poll" = xyes +then : + printf "%s\n" "#define HAVE_POLL 1" >>confdefs.h POLL_LIBS="-lpoll"
fi
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gethostbyname" >&5 -$as_echo_n "checking for library containing gethostbyname... " >&6; } -if ${ac_cv_search_gethostbyname+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing gethostbyname" >&5 +printf %s "checking for library containing gethostbyname... " >&6; } +if test ${ac_cv_search_gethostbyname+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -18168,56 +20695,59 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gethostbyname (); int -main () +main (void) { return gethostbyname (); ; return 0; } _ACEOF -for ac_lib in '' nsl; do +for ac_lib in '' nsl +do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi - if ac_fn_c_try_link "$LINENO"; then : + if ac_fn_c_try_link "$LINENO" +then : ac_cv_search_gethostbyname=$ac_res fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext - if ${ac_cv_search_gethostbyname+:} false; then : + if test ${ac_cv_search_gethostbyname+y} +then : break fi done -if ${ac_cv_search_gethostbyname+:} false; then : +if test ${ac_cv_search_gethostbyname+y} +then :
-else +else $as_nop ac_cv_search_gethostbyname=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_gethostbyname" >&5 -$as_echo "$ac_cv_search_gethostbyname" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_gethostbyname" >&5 +printf "%s\n" "$ac_cv_search_gethostbyname" >&6; } ac_res=$ac_cv_search_gethostbyname -if test "$ac_res" != no; then : +if test "$ac_res" != no +then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing connect" >&5 -$as_echo_n "checking for library containing connect... " >&6; } -if ${ac_cv_search_connect+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing connect" >&5 +printf %s "checking for library containing connect... " >&6; } +if test ${ac_cv_search_connect+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -18225,56 +20755,59 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char connect (); int -main () +main (void) { return connect (); ; return 0; } _ACEOF -for ac_lib in '' socket; do +for ac_lib in '' socket +do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi - if ac_fn_c_try_link "$LINENO"; then : + if ac_fn_c_try_link "$LINENO" +then : ac_cv_search_connect=$ac_res fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext - if ${ac_cv_search_connect+:} false; then : + if test ${ac_cv_search_connect+y} +then : break fi done -if ${ac_cv_search_connect+:} false; then : +if test ${ac_cv_search_connect+y} +then :
-else +else $as_nop ac_cv_search_connect=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_connect" >&5 -$as_echo "$ac_cv_search_connect" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_connect" >&5 +printf "%s\n" "$ac_cv_search_connect" >&6; } ac_res=$ac_cv_search_connect -if test "$ac_res" != no; then : +if test "$ac_res" != no +then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing inet_aton" >&5 -$as_echo_n "checking for library containing inet_aton... " >&6; } -if ${ac_cv_search_inet_aton+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing inet_aton" >&5 +printf %s "checking for library containing inet_aton... " >&6; } +if test ${ac_cv_search_inet_aton+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -18282,76 +20815,82 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char inet_aton (); int -main () +main (void) { return inet_aton (); ; return 0; } _ACEOF -for ac_lib in '' resolv; do +for ac_lib in '' resolv +do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi - if ac_fn_c_try_link "$LINENO"; then : + if ac_fn_c_try_link "$LINENO" +then : ac_cv_search_inet_aton=$ac_res fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext - if ${ac_cv_search_inet_aton+:} false; then : + if test ${ac_cv_search_inet_aton+y} +then : break fi done -if ${ac_cv_search_inet_aton+:} false; then : +if test ${ac_cv_search_inet_aton+y} +then :
-else +else $as_nop ac_cv_search_inet_aton=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_inet_aton" >&5 -$as_echo "$ac_cv_search_inet_aton" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_inet_aton" >&5 +printf "%s\n" "$ac_cv_search_inet_aton" >&6; } ac_res=$ac_cv_search_inet_aton -if test "$ac_res" != no; then : +if test "$ac_res" != no +then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
fi
-for ac_func in \ - getaddrinfo \ - getnameinfo \ - getservbyport \ +ac_fn_c_check_func "$LINENO" "getaddrinfo" "ac_cv_func_getaddrinfo" +if test "x$ac_cv_func_getaddrinfo" = xyes +then : + printf "%s\n" "#define HAVE_GETADDRINFO 1" >>confdefs.h
-do : - as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test "x$"$as_ac_var"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF +fi +ac_fn_c_check_func "$LINENO" "getnameinfo" "ac_cv_func_getnameinfo" +if test "x$ac_cv_func_getnameinfo" = xyes +then : + printf "%s\n" "#define HAVE_GETNAMEINFO 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "getservbyport" "ac_cv_func_getservbyport" +if test "x$ac_cv_func_getservbyport" = xyes +then : + printf "%s\n" "#define HAVE_GETSERVBYPORT 1" >>confdefs.h
fi -done
case $host_os in darwin*|macosx*) ;; *) ac_save_LIBS=$LIBS - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing clock_gettime" >&5 -$as_echo_n "checking for library containing clock_gettime... " >&6; } -if ${ac_cv_search_clock_gettime+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing clock_gettime" >&5 +printf %s "checking for library containing clock_gettime... " >&6; } +if test ${ac_cv_search_clock_gettime+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -18359,49 +20898,51 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char clock_gettime (); int -main () +main (void) { return clock_gettime (); ; return 0; } _ACEOF -for ac_lib in '' rt; do +for ac_lib in '' rt +do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi - if ac_fn_c_try_link "$LINENO"; then : + if ac_fn_c_try_link "$LINENO" +then : ac_cv_search_clock_gettime=$ac_res fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext - if ${ac_cv_search_clock_gettime+:} false; then : + if test ${ac_cv_search_clock_gettime+y} +then : break fi done -if ${ac_cv_search_clock_gettime+:} false; then : +if test ${ac_cv_search_clock_gettime+y} +then :
-else +else $as_nop ac_cv_search_clock_gettime=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_clock_gettime" >&5 -$as_echo "$ac_cv_search_clock_gettime" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_clock_gettime" >&5 +printf "%s\n" "$ac_cv_search_clock_gettime" >&6; } ac_res=$ac_cv_search_clock_gettime -if test "$ac_res" != no; then : +if test "$ac_res" != no +then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
-$as_echo "#define HAVE_CLOCK_GETTIME 1" >>confdefs.h +printf "%s\n" "#define HAVE_CLOCK_GETTIME 1" >>confdefs.h
test "$ac_res" = "none required" || RT_LIBS="$ac_res"
@@ -18413,46 +20954,52 @@ esac
if test "x$with_ldap" != "xno" then - if ${LDAP_CFLAGS:+false} :; then : - if ${PKG_CONFIG+:} false; then : + if ${LDAP_CFLAGS:+false} : +then : + if test ${PKG_CONFIG+y} +then : LDAP_CFLAGS=`$PKG_CONFIG --cflags openldap 2>/dev/null` fi fi
-if ${LDAP_LIBS:+false} :; then : - if ${PKG_CONFIG+:} false; then : +if ${LDAP_LIBS:+false} : +then : + if test ${PKG_CONFIG+y} +then : LDAP_LIBS=`$PKG_CONFIG --libs openldap 2>/dev/null` fi fi
LDAP_LIBS=${LDAP_LIBS:-"-lldap_r -llber"} -$as_echo "$as_me:${as_lineno-$LINENO}: openldap cflags: $LDAP_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: openldap libs: $LDAP_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: openldap cflags: $LDAP_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: openldap libs: $LDAP_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $LDAP_CFLAGS" -for ac_header in ldap.h lber.h -do : - as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` -ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test "x$"$as_ac_Header"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "ldap.h" "ac_cv_header_ldap_h" "$ac_includes_default" +if test "x$ac_cv_header_ldap_h" = xyes +then : + printf "%s\n" "#define HAVE_LDAP_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "lber.h" "ac_cv_header_lber_h" "$ac_includes_default" +if test "x$ac_cv_header_lber_h" = xyes +then : + printf "%s\n" "#define HAVE_LBER_H 1" >>confdefs.h
-done +fi
if test "$ac_cv_header_ldap_h" = "yes" -a "$ac_cv_header_lber_h" = "yes" then ac_fn_c_check_type "$LINENO" "LDAPSortKey" "ac_cv_type_LDAPSortKey" "#include <ldap.h> " -if test "x$ac_cv_type_LDAPSortKey" = xyes; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldap_initialize in -lldap_r" >&5 -$as_echo_n "checking for ldap_initialize in -lldap_r... " >&6; } -if ${ac_cv_lib_ldap_r_ldap_initialize+:} false; then : - $as_echo_n "(cached) " >&6 -else +if test "x$ac_cv_type_LDAPSortKey" = xyes +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ldap_initialize in -lldap_r" >&5 +printf %s "checking for ldap_initialize in -lldap_r... " >&6; } +if test ${ac_cv_lib_ldap_r_ldap_initialize+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lldap_r $PTHREAD_LIBS $LDAP_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -18461,35 +21008,35 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char ldap_initialize (); int -main () +main (void) { return ldap_initialize (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_ldap_r_ldap_initialize=yes -else +else $as_nop ac_cv_lib_ldap_r_ldap_initialize=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ldap_r_ldap_initialize" >&5 -$as_echo "$ac_cv_lib_ldap_r_ldap_initialize" >&6; } -if test "x$ac_cv_lib_ldap_r_ldap_initialize" = xyes; then : - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ber_init in -llber" >&5 -$as_echo_n "checking for ber_init in -llber... " >&6; } -if ${ac_cv_lib_lber_ber_init+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ldap_r_ldap_initialize" >&5 +printf "%s\n" "$ac_cv_lib_ldap_r_ldap_initialize" >&6; } +if test "x$ac_cv_lib_ldap_r_ldap_initialize" = xyes +then : + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ber_init in -llber" >&5 +printf %s "checking for ber_init in -llber... " >&6; } +if test ${ac_cv_lib_lber_ber_init+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-llber $PTHREAD_LIBS $LDAP_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -18498,66 +21045,94 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char ber_init (); int -main () +main (void) { return ber_init (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_lber_ber_init=yes -else +else $as_nop ac_cv_lib_lber_ber_init=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lber_ber_init" >&5 -$as_echo "$ac_cv_lib_lber_ber_init" >&6; } -if test "x$ac_cv_lib_lber_ber_init" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lber_ber_init" >&5 +printf "%s\n" "$ac_cv_lib_lber_ber_init" >&6; } +if test "x$ac_cv_lib_lber_ber_init" = xyes +then :
-$as_echo "#define HAVE_LDAP 1" >>confdefs.h +printf "%s\n" "#define HAVE_LDAP 1" >>confdefs.h
-else +else $as_nop LDAP_LIBS="" fi
-else +else $as_nop LDAP_LIBS="" fi
-else +else $as_nop LDAP_LIBS="" fi
ac_wine_check_funcs_save_LIBS="$LIBS" LIBS="$LIBS $LDAP_LIBS $PTHREAD_LIBS" -for ac_func in \ - ldap_count_references \ - ldap_first_reference \ - ldap_next_reference \ - ldap_parse_reference \ - ldap_parse_sort_control \ - ldap_parse_sortresponse_control \ - ldap_parse_vlv_control \ - ldap_parse_vlvresponse_control -do : - as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` -ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test "x$"$as_ac_var"" = x"yes"; then : - cat >>confdefs.h <<_ACEOF -#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_func "$LINENO" "ldap_count_references" "ac_cv_func_ldap_count_references" +if test "x$ac_cv_func_ldap_count_references" = xyes +then : + printf "%s\n" "#define HAVE_LDAP_COUNT_REFERENCES 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "ldap_first_reference" "ac_cv_func_ldap_first_reference" +if test "x$ac_cv_func_ldap_first_reference" = xyes +then : + printf "%s\n" "#define HAVE_LDAP_FIRST_REFERENCE 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "ldap_next_reference" "ac_cv_func_ldap_next_reference" +if test "x$ac_cv_func_ldap_next_reference" = xyes +then : + printf "%s\n" "#define HAVE_LDAP_NEXT_REFERENCE 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "ldap_parse_reference" "ac_cv_func_ldap_parse_reference" +if test "x$ac_cv_func_ldap_parse_reference" = xyes +then : + printf "%s\n" "#define HAVE_LDAP_PARSE_REFERENCE 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "ldap_parse_sort_control" "ac_cv_func_ldap_parse_sort_control" +if test "x$ac_cv_func_ldap_parse_sort_control" = xyes +then : + printf "%s\n" "#define HAVE_LDAP_PARSE_SORT_CONTROL 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "ldap_parse_sortresponse_control" "ac_cv_func_ldap_parse_sortresponse_control" +if test "x$ac_cv_func_ldap_parse_sortresponse_control" = xyes +then : + printf "%s\n" "#define HAVE_LDAP_PARSE_SORTRESPONSE_CONTROL 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "ldap_parse_vlv_control" "ac_cv_func_ldap_parse_vlv_control" +if test "x$ac_cv_func_ldap_parse_vlv_control" = xyes +then : + printf "%s\n" "#define HAVE_LDAP_PARSE_VLV_CONTROL 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "ldap_parse_vlvresponse_control" "ac_cv_func_ldap_parse_vlvresponse_control" +if test "x$ac_cv_func_ldap_parse_vlvresponse_control" = xyes +then : + printf "%s\n" "#define HAVE_LDAP_PARSE_VLVRESPONSE_CONTROL 1" >>confdefs.h
fi -done
LIBS="$ac_wine_check_funcs_save_LIBS" else @@ -18566,7 +21141,8 @@ LIBS="$ac_wine_check_funcs_save_LIBS" CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$LDAP_LIBS" = "x"; then : +if test "x$LDAP_LIBS" = "x" +then : case "x$with_ldap" in x) as_fn_append wine_notices "|libldap (OpenLDAP) ${notice_platform}development files not found, LDAP won't be supported." ;; xno) ;; @@ -18576,101 +21152,107 @@ esac
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sched_setaffinity" >&5 -$as_echo_n "checking for sched_setaffinity... " >&6; } -if ${wine_cv_have_sched_setaffinity+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sched_setaffinity" >&5 +printf %s "checking for sched_setaffinity... " >&6; } +if test ${wine_cv_have_sched_setaffinity+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _GNU_SOURCE #include <sched.h> int -main () +main (void) { sched_setaffinity(0, 0, 0); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_have_sched_setaffinity=yes -else +else $as_nop wine_cv_have_sched_setaffinity=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_sched_setaffinity" >&5 -$as_echo "$wine_cv_have_sched_setaffinity" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_sched_setaffinity" >&5 +printf "%s\n" "$wine_cv_have_sched_setaffinity" >&6; } if test "$wine_cv_have_sched_setaffinity" = "yes" then
-$as_echo "#define HAVE_SCHED_SETAFFINITY 1" >>confdefs.h +printf "%s\n" "#define HAVE_SCHED_SETAFFINITY 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fallocate" >&5 -$as_echo_n "checking for fallocate... " >&6; } -if ${wine_cv_have_fallocate+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for fallocate" >&5 +printf %s "checking for fallocate... " >&6; } +if test ${wine_cv_have_fallocate+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _GNU_SOURCE #include <fcntl.h> int -main () +main (void) { fallocate(-1, 0, 0, 0); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_have_fallocate=yes -else +else $as_nop wine_cv_have_fallocate=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_fallocate" >&5 -$as_echo "$wine_cv_have_fallocate" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_fallocate" >&5 +printf "%s\n" "$wine_cv_have_fallocate" >&6; } if test "$wine_cv_have_fallocate" = "yes" then
-$as_echo "#define HAVE_FALLOCATE 1" >>confdefs.h +printf "%s\n" "#define HAVE_FALLOCATE 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 -$as_echo_n "checking for inline... " >&6; } -if ${ac_cv_c_inline+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 +printf %s "checking for inline... " >&6; } +if test ${ac_cv_c_inline+y} +then : + printf %s "(cached) " >&6 +else $as_nop ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __cplusplus typedef int foo_t; -static $ac_kw foo_t static_foo () {return 0; } -$ac_kw foo_t foo () {return 0; } +static $ac_kw foo_t static_foo (void) {return 0; } +$ac_kw foo_t foo (void) {return 0; } #endif
_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_c_inline=$ac_kw fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext test "$ac_cv_c_inline" != no && break done
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5 -$as_echo "$ac_cv_c_inline" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5 +printf "%s\n" "$ac_cv_c_inline" >&6; }
case $ac_cv_c_inline in inline | yes) ;; @@ -18690,22 +21272,20 @@ esac ac_fn_c_check_type "$LINENO" "sigset_t" "ac_cv_type_sigset_t" "#include <sys/types.h> #include <signal.h> " -if test "x$ac_cv_type_sigset_t" = xyes; then : +if test "x$ac_cv_type_sigset_t" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_SIGSET_T 1 -_ACEOF +printf "%s\n" "#define HAVE_SIGSET_T 1" >>confdefs.h
fi
ac_fn_c_check_type "$LINENO" "request_sense" "ac_cv_type_request_sense" "#include <linux/cdrom.h> " -if test "x$ac_cv_type_request_sense" = xyes; then : +if test "x$ac_cv_type_request_sense" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_REQUEST_SENSE 1 -_ACEOF +printf "%s\n" "#define HAVE_REQUEST_SENSE 1" >>confdefs.h
fi @@ -18734,11 +21314,10 @@ ac_fn_c_check_type "$LINENO" "struct xinpgen" "ac_cv_type_struct_xinpgen" "#incl #include <netinet/in_pcb.h> #endif " -if test "x$ac_cv_type_struct_xinpgen" = xyes; then : +if test "x$ac_cv_type_struct_xinpgen" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_XINPGEN 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_XINPGEN 1" >>confdefs.h
fi @@ -18748,21 +21327,21 @@ ac_fn_c_check_member "$LINENO" "struct ff_effect" "direction" "ac_cv_member_stru #include <linux/input.h> #endif " -if test "x$ac_cv_member_struct_ff_effect_direction" = xyes; then : +if test "x$ac_cv_member_struct_ff_effect_direction" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_FF_EFFECT_DIRECTION 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_FF_EFFECT_DIRECTION 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for if_nameindex" >&5 -$as_echo_n "checking for if_nameindex... " >&6; } -if ${wine_cv_have_if_nameindex+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for if_nameindex" >&5 +printf %s "checking for if_nameindex... " >&6; } +if test ${wine_cv_have_if_nameindex+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef HAVE_SYS_TYPES_H @@ -18775,74 +21354,78 @@ else # include <net/if.h> #endif int -main () +main (void) { struct if_nameindex *p = if_nameindex(); return p->if_index; ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_have_if_nameindex=yes -else +else $as_nop wine_cv_have_if_nameindex=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_if_nameindex" >&5 -$as_echo "$wine_cv_have_if_nameindex" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_if_nameindex" >&5 +printf "%s\n" "$wine_cv_have_if_nameindex" >&6; } if test "$wine_cv_have_if_nameindex" = "yes" then
-$as_echo "#define HAVE_IF_NAMEINDEX 1" >>confdefs.h +printf "%s\n" "#define HAVE_IF_NAMEINDEX 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sigaddset" >&5 -$as_echo_n "checking for sigaddset... " >&6; } -if ${wine_cv_have_sigaddset+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sigaddset" >&5 +printf %s "checking for sigaddset... " >&6; } +if test ${wine_cv_have_sigaddset+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <signal.h> int -main () +main (void) { sigset_t set; sigaddset(&set,SIGTERM); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_have_sigaddset=yes -else +else $as_nop wine_cv_have_sigaddset=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_sigaddset" >&5 -$as_echo "$wine_cv_have_sigaddset" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_sigaddset" >&5 +printf "%s\n" "$wine_cv_have_sigaddset" >&6; } if test "$wine_cv_have_sigaddset" = "yes" then
-$as_echo "#define HAVE_SIGADDSET 1" >>confdefs.h +printf "%s\n" "#define HAVE_SIGADDSET 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we can use re-entrant gethostbyname_r Linux style" >&5 -$as_echo_n "checking whether we can use re-entrant gethostbyname_r Linux style... " >&6; } -if ${wine_cv_linux_gethostbyname_r_6+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we can use re-entrant gethostbyname_r Linux style" >&5 +printf %s "checking whether we can use re-entrant gethostbyname_r Linux style... " >&6; } +if test ${wine_cv_linux_gethostbyname_r_6+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <netdb.h> int -main () +main (void) {
char *name=0; @@ -18861,32 +21444,34 @@ main () return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_linux_gethostbyname_r_6=yes -else +else $as_nop wine_cv_linux_gethostbyname_r_6=no
fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_linux_gethostbyname_r_6" >&5 -$as_echo "$wine_cv_linux_gethostbyname_r_6" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_linux_gethostbyname_r_6" >&5 +printf "%s\n" "$wine_cv_linux_gethostbyname_r_6" >&6; } if test "$wine_cv_linux_gethostbyname_r_6" = "yes" then
-$as_echo "#define HAVE_LINUX_GETHOSTBYNAME_R_6 1" >>confdefs.h +printf "%s\n" "#define HAVE_LINUX_GETHOSTBYNAME_R_6 1" >>confdefs.h
fi
if test "$ac_cv_header_linux_joystick_h" = "yes" then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether linux/joystick.h uses the Linux 2.2+ API" >&5 -$as_echo_n "checking whether linux/joystick.h uses the Linux 2.2+ API... " >&6; } -if ${wine_cv_linux_joystick_22_api+:} false; then : - $as_echo_n "(cached) " >&6 -else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether linux/joystick.h uses the Linux 2.2+ API" >&5 +printf %s "checking whether linux/joystick.h uses the Linux 2.2+ API... " >&6; } +if test ${wine_cv_linux_joystick_22_api+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
@@ -18900,27 +21485,28 @@ else #endif
int -main () +main (void) { /*empty*/ ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : wine_cv_linux_joystick_22_api=yes -else +else $as_nop wine_cv_linux_joystick_22_api=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_linux_joystick_22_api" >&5 -$as_echo "$wine_cv_linux_joystick_22_api" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_linux_joystick_22_api" >&5 +printf "%s\n" "$wine_cv_linux_joystick_22_api" >&6; } if test "$wine_cv_linux_joystick_22_api" = "yes" then
-$as_echo "#define HAVE_LINUX_22_JOYSTICK_API 1" >>confdefs.h +printf "%s\n" "#define HAVE_LINUX_22_JOYSTICK_API 1" >>confdefs.h
fi fi @@ -18933,11 +21519,10 @@ ac_fn_c_check_member "$LINENO" "struct msghdr" "msg_accrights" "ac_cv_member_str # include <sys/un.h> #endif " -if test "x$ac_cv_member_struct_msghdr_msg_accrights" = xyes; then : +if test "x$ac_cv_member_struct_msghdr_msg_accrights" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS 1" >>confdefs.h
fi @@ -18949,11 +21534,10 @@ ac_fn_c_check_member "$LINENO" "struct sockaddr" "sa_len" "ac_cv_member_struct_s # include <sys/un.h> #endif " -if test "x$ac_cv_member_struct_sockaddr_sa_len" = xyes; then : +if test "x$ac_cv_member_struct_sockaddr_sa_len" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_SOCKADDR_SA_LEN 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_SOCKADDR_SA_LEN 1" >>confdefs.h
fi @@ -18965,11 +21549,10 @@ ac_fn_c_check_member "$LINENO" "struct sockaddr_un" "sun_len" "ac_cv_member_stru # include <sys/un.h> #endif " -if test "x$ac_cv_member_struct_sockaddr_un_sun_len" = xyes; then : +if test "x$ac_cv_member_struct_sockaddr_un_sun_len" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_SOCKADDR_UN_SUN_LEN 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_SOCKADDR_UN_SUN_LEN 1" >>confdefs.h
fi @@ -18980,11 +21563,10 @@ ac_fn_c_check_member "$LINENO" "scsireq_t" "cmd" "ac_cv_member_scsireq_t_cmd" "# #include <scsi/sg.h> #endif " -if test "x$ac_cv_member_scsireq_t_cmd" = xyes; then : +if test "x$ac_cv_member_scsireq_t_cmd" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_SCSIREQ_T_CMD 1 -_ACEOF +printf "%s\n" "#define HAVE_SCSIREQ_T_CMD 1" >>confdefs.h
fi @@ -18993,11 +21575,10 @@ ac_fn_c_check_member "$LINENO" "sg_io_hdr_t" "interface_id" "ac_cv_member_sg_io_ #include <scsi/sg.h> #endif " -if test "x$ac_cv_member_sg_io_hdr_t_interface_id" = xyes; then : +if test "x$ac_cv_member_sg_io_hdr_t_interface_id" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_SG_IO_HDR_T_INTERFACE_ID 1 -_ACEOF +printf "%s\n" "#define HAVE_SG_IO_HDR_T_INTERFACE_ID 1" >>confdefs.h
fi @@ -19005,11 +21586,10 @@ fi
ac_fn_c_check_member "$LINENO" "siginfo_t" "si_fd" "ac_cv_member_siginfo_t_si_fd" "#include <signal.h> " -if test "x$ac_cv_member_siginfo_t_si_fd" = xyes; then : +if test "x$ac_cv_member_siginfo_t_si_fd" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_SIGINFO_T_SI_FD 1 -_ACEOF +printf "%s\n" "#define HAVE_SIGINFO_T_SI_FD 1" >>confdefs.h
fi @@ -19020,11 +21600,10 @@ ac_fn_c_check_member "$LINENO" "struct mtget" "mt_blksiz" "ac_cv_member_struct_m #include <sys/mtio.h> #endif " -if test "x$ac_cv_member_struct_mtget_mt_blksiz" = xyes; then : +if test "x$ac_cv_member_struct_mtget_mt_blksiz" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_MTGET_MT_BLKSIZ 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_MTGET_MT_BLKSIZ 1" >>confdefs.h
fi @@ -19033,11 +21612,10 @@ ac_fn_c_check_member "$LINENO" "struct mtget" "mt_gstat" "ac_cv_member_struct_mt #include <sys/mtio.h> #endif " -if test "x$ac_cv_member_struct_mtget_mt_gstat" = xyes; then : +if test "x$ac_cv_member_struct_mtget_mt_gstat" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_MTGET_MT_GSTAT 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_MTGET_MT_GSTAT 1" >>confdefs.h
fi @@ -19046,11 +21624,10 @@ ac_fn_c_check_member "$LINENO" "struct mtget" "mt_blkno" "ac_cv_member_struct_mt #include <sys/mtio.h> #endif " -if test "x$ac_cv_member_struct_mtget_mt_blkno" = xyes; then : +if test "x$ac_cv_member_struct_mtget_mt_blkno" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_MTGET_MT_BLKNO 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_MTGET_MT_BLKNO 1" >>confdefs.h
fi @@ -19060,121 +21637,108 @@ ac_fn_c_check_member "$LINENO" "struct option" "name" "ac_cv_member_struct_optio #include <getopt.h> #endif " -if test "x$ac_cv_member_struct_option_name" = xyes; then : +if test "x$ac_cv_member_struct_option_name" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_OPTION_NAME 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_OPTION_NAME 1" >>confdefs.h
fi
ac_fn_c_check_member "$LINENO" "struct stat" "st_blocks" "ac_cv_member_struct_stat_st_blocks" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_blocks" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_blocks" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_BLOCKS 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_BLOCKS 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_mtim" "ac_cv_member_struct_stat_st_mtim" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_mtim" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_mtim" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_MTIM 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_MTIM 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_mtimespec" "ac_cv_member_struct_stat_st_mtimespec" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_mtimespec" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_mtimespec" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_MTIMESPEC 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_MTIMESPEC 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_ctim" "ac_cv_member_struct_stat_st_ctim" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_ctim" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_ctim" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_CTIM 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_CTIM 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_ctimespec" "ac_cv_member_struct_stat_st_ctimespec" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_ctimespec" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_ctimespec" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_CTIMESPEC 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_CTIMESPEC 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_atim" "ac_cv_member_struct_stat_st_atim" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_atim" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_atim" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_ATIM 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_ATIM 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_atimespec" "ac_cv_member_struct_stat_st_atimespec" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_atimespec" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_atimespec" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_ATIMESPEC 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_ATIMESPEC 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_birthtime" "ac_cv_member_struct_stat_st_birthtime" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_birthtime" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_birthtime" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_BIRTHTIME 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_BIRTHTIME 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_birthtim" "ac_cv_member_struct_stat_st_birthtim" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_birthtim" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_birthtim" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_BIRTHTIM 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_BIRTHTIM 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_birthtimespec" "ac_cv_member_struct_stat_st_birthtimespec" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_birthtimespec" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_birthtimespec" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "__st_birthtime" "ac_cv_member_struct_stat___st_birthtime" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat___st_birthtime" = xyes; then : +if test "x$ac_cv_member_struct_stat___st_birthtime" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT___ST_BIRTHTIME 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT___ST_BIRTHTIME 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "__st_birthtim" "ac_cv_member_struct_stat___st_birthtim" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat___st_birthtim" = xyes; then : +if test "x$ac_cv_member_struct_stat___st_birthtim" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT___ST_BIRTHTIM 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT___ST_BIRTHTIM 1" >>confdefs.h
fi @@ -19187,11 +21751,10 @@ ac_fn_c_check_member "$LINENO" "struct sockaddr_in6" "sin6_scope_id" "ac_cv_memb #include <netinet/in.h> #endif " -if test "x$ac_cv_member_struct_sockaddr_in6_sin6_scope_id" = xyes; then : +if test "x$ac_cv_member_struct_sockaddr_in6_sin6_scope_id" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1" >>confdefs.h
fi @@ -19207,11 +21770,10 @@ ac_fn_c_check_type "$LINENO" "struct __res_state" "ac_cv_type_struct___res_state #include <resolv.h> #endif " -if test "x$ac_cv_type_struct___res_state" = xyes; then : +if test "x$ac_cv_type_struct___res_state" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT___RES_STATE 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT___RES_STATE 1" >>confdefs.h
fi @@ -19221,11 +21783,10 @@ ac_fn_c_check_member "$LINENO" "struct __res_state" "_u._ext.nscount6" "ac_cv_me #include <resolv.h> #endif " -if test "x$ac_cv_member_struct___res_state__u__ext_nscount6" = xyes; then : +if test "x$ac_cv_member_struct___res_state__u__ext_nscount6" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT___RES_STATE__U__EXT_NSCOUNT6 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT___RES_STATE__U__EXT_NSCOUNT6 1" >>confdefs.h
fi @@ -19241,11 +21802,10 @@ ac_fn_c_check_member "$LINENO" "ns_msg" "_msg_ptr" "ac_cv_member_ns_msg__msg_ptr # include <arpa/nameser.h> #endif " -if test "x$ac_cv_member_ns_msg__msg_ptr" = xyes; then : +if test "x$ac_cv_member_ns_msg__msg_ptr" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_NS_MSG__MSG_PTR 1 -_ACEOF +printf "%s\n" "#define HAVE_NS_MSG__MSG_PTR 1" >>confdefs.h
fi @@ -19267,11 +21827,10 @@ ac_fn_c_check_member "$LINENO" "struct icmpstat" "icps_inhist" "ac_cv_member_str #include <netinet/icmp_var.h> #endif " -if test "x$ac_cv_member_struct_icmpstat_icps_inhist" = xyes; then : +if test "x$ac_cv_member_struct_icmpstat_icps_inhist" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_ICMPSTAT_ICPS_INHIST 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_ICMPSTAT_ICPS_INHIST 1" >>confdefs.h
fi @@ -19311,11 +21870,10 @@ ac_fn_c_check_member "$LINENO" "struct icmpstat" "icps_outhist" "ac_cv_member_st #include <netinet/icmp_var.h> #endif " -if test "x$ac_cv_member_struct_icmpstat_icps_outhist" = xyes; then : +if test "x$ac_cv_member_struct_icmpstat_icps_outhist" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_ICMPSTAT_ICPS_OUTHIST 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_ICMPSTAT_ICPS_OUTHIST 1" >>confdefs.h
fi @@ -19326,11 +21884,10 @@ ac_fn_c_check_member "$LINENO" "struct in6_pktinfo" "ipi6_addr" "ac_cv_member_st #include <netinet/in.h> #endif " -if test "x$ac_cv_member_struct_in6_pktinfo_ipi6_addr" = xyes; then : +if test "x$ac_cv_member_struct_in6_pktinfo_ipi6_addr" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_IN6_PKTINFO_IPI6_ADDR 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_IN6_PKTINFO_IPI6_ADDR 1" >>confdefs.h
fi @@ -19349,11 +21906,10 @@ ac_fn_c_check_member "$LINENO" "struct ipstat" "ips_total" "ac_cv_member_struct_ #include <netinet/ip_var.h> #endif " -if test "x$ac_cv_member_struct_ipstat_ips_total" = xyes; then : +if test "x$ac_cv_member_struct_ipstat_ips_total" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_IPSTAT_IPS_TOTAL 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_IPSTAT_IPS_TOTAL 1" >>confdefs.h
fi @@ -19363,11 +21919,10 @@ ac_fn_c_check_member "$LINENO" "struct ip_stats" "ips_total" "ac_cv_member_struc #include <netinet/ip_var.h> #endif " -if test "x$ac_cv_member_struct_ip_stats_ips_total" = xyes; then : +if test "x$ac_cv_member_struct_ip_stats_ips_total" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_IP_STATS_IPS_TOTAL 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_IP_STATS_IPS_TOTAL 1" >>confdefs.h
fi @@ -19389,11 +21944,10 @@ ac_fn_c_check_member "$LINENO" "struct tcpstat" "tcps_connattempt" "ac_cv_member #include <netinet/tcp_var.h> #endif " -if test "x$ac_cv_member_struct_tcpstat_tcps_connattempt" = xyes; then : +if test "x$ac_cv_member_struct_tcpstat_tcps_connattempt" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_TCPSTAT_TCPS_CONNATTEMPT 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_TCPSTAT_TCPS_CONNATTEMPT 1" >>confdefs.h
fi @@ -19403,11 +21957,10 @@ ac_fn_c_check_member "$LINENO" "struct tcp_stats" "tcps_connattempt" "ac_cv_memb #include <netinet/tcp_var.h> #endif " -if test "x$ac_cv_member_struct_tcp_stats_tcps_connattempt" = xyes; then : +if test "x$ac_cv_member_struct_tcp_stats_tcps_connattempt" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_TCP_STATS_TCPS_CONNATTEMPT 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_TCP_STATS_TCPS_CONNATTEMPT 1" >>confdefs.h
fi @@ -19429,11 +21982,10 @@ ac_fn_c_check_member "$LINENO" "struct udpstat" "udps_ipackets" "ac_cv_member_st #include <netinet/udp_var.h> #endif " -if test "x$ac_cv_member_struct_udpstat_udps_ipackets" = xyes; then : +if test "x$ac_cv_member_struct_udpstat_udps_ipackets" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_UDPSTAT_UDPS_IPACKETS 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_UDPSTAT_UDPS_IPACKETS 1" >>confdefs.h
fi @@ -19446,11 +21998,10 @@ ac_fn_c_check_member "$LINENO" "struct ifreq" "ifr_hwaddr" "ac_cv_member_struct_ # include <net/if.h> #endif " -if test "x$ac_cv_member_struct_ifreq_ifr_hwaddr" = xyes; then : +if test "x$ac_cv_member_struct_ifreq_ifr_hwaddr" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_IFREQ_IFR_HWADDR 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_IFREQ_IFR_HWADDR 1" >>confdefs.h
fi @@ -19460,11 +22011,10 @@ ac_fn_c_check_member "$LINENO" "struct sysinfo" "totalram" "ac_cv_member_struct_ # include <sys/sysinfo.h> #endif " -if test "x$ac_cv_member_struct_sysinfo_totalram" = xyes; then : +if test "x$ac_cv_member_struct_sysinfo_totalram" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_SYSINFO_TOTALRAM 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_SYSINFO_TOTALRAM 1" >>confdefs.h
fi @@ -19472,11 +22022,10 @@ ac_fn_c_check_member "$LINENO" "struct sysinfo" "mem_unit" "ac_cv_member_struct_ # include <sys/sysinfo.h> #endif " -if test "x$ac_cv_member_struct_sysinfo_mem_unit" = xyes; then : +if test "x$ac_cv_member_struct_sysinfo_mem_unit" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_SYSINFO_MEM_UNIT 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_SYSINFO_MEM_UNIT 1" >>confdefs.h
fi @@ -19484,181 +22033,192 @@ fi
ac_save_LIBS="$LIBS" LIBS="$LIBS -lm" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isfinite" >&5 -$as_echo_n "checking for isfinite... " >&6; } -if ${ac_cv_have_isfinite+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for isfinite" >&5 +printf %s "checking for isfinite... " >&6; } +if test ${ac_cv_have_isfinite+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _GNU_SOURCE #include <math.h> int -main () +main (void) { float f = 0.0; return isfinite(f) ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_have_isfinite="yes" -else +else $as_nop ac_cv_have_isfinite="no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_isfinite" >&5 -$as_echo "$ac_cv_have_isfinite" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_isfinite" >&5 +printf "%s\n" "$ac_cv_have_isfinite" >&6; } if test "$ac_cv_have_isfinite" = "yes" then
-$as_echo "#define HAVE_ISFINITE 1" >>confdefs.h +printf "%s\n" "#define HAVE_ISFINITE 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf" >&5 -$as_echo_n "checking for isinf... " >&6; } -if ${ac_cv_have_isinf+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for isinf" >&5 +printf %s "checking for isinf... " >&6; } +if test ${ac_cv_have_isinf+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <math.h> int -main () +main (void) { float f = 0.0; return isinf(f) ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_have_isinf="yes" -else +else $as_nop ac_cv_have_isinf="no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_isinf" >&5 -$as_echo "$ac_cv_have_isinf" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_isinf" >&5 +printf "%s\n" "$ac_cv_have_isinf" >&6; } if test "$ac_cv_have_isinf" = "yes" then
-$as_echo "#define HAVE_ISINF 1" >>confdefs.h +printf "%s\n" "#define HAVE_ISINF 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan" >&5 -$as_echo_n "checking for isnan... " >&6; } -if ${ac_cv_have_isnan+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for isnan" >&5 +printf %s "checking for isnan... " >&6; } +if test ${ac_cv_have_isnan+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <math.h> int -main () +main (void) { float f = 0.0; return isnan(f) ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_have_isnan="yes" -else +else $as_nop ac_cv_have_isnan="no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_isnan" >&5 -$as_echo "$ac_cv_have_isnan" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_isnan" >&5 +printf "%s\n" "$ac_cv_have_isnan" >&6; } if test "$ac_cv_have_isnan" = "yes" then
-$as_echo "#define HAVE_ISNAN 1" >>confdefs.h +printf "%s\n" "#define HAVE_ISNAN 1" >>confdefs.h
fi
LIBS="$ac_save_LIBS"
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __builtin_popcount" >&5 -$as_echo_n "checking for __builtin_popcount... " >&6; } -if ${ac_cv_have___builtin_popcount+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for __builtin_popcount" >&5 +printf %s "checking for __builtin_popcount... " >&6; } +if test ${ac_cv_have___builtin_popcount+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) { return __builtin_popcount(1) ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_have___builtin_popcount="yes" -else +else $as_nop ac_cv_have___builtin_popcount="no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have___builtin_popcount" >&5 -$as_echo "$ac_cv_have___builtin_popcount" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have___builtin_popcount" >&5 +printf "%s\n" "$ac_cv_have___builtin_popcount" >&6; } if test "$ac_cv_have___builtin_popcount" = "yes" then
-$as_echo "#define HAVE___BUILTIN_POPCOUNT 1" >>confdefs.h +printf "%s\n" "#define HAVE___BUILTIN_POPCOUNT 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __clear_cache" >&5 -$as_echo_n "checking for __clear_cache... " >&6; } -if ${ac_cv_have___clear_cache+:} false; then : - $as_echo_n "(cached) " >&6 -else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for __clear_cache" >&5 +printf %s "checking for __clear_cache... " >&6; } +if test ${ac_cv_have___clear_cache+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) { __clear_cache((void*)0, (void*)0); return 0; ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_have___clear_cache="yes" -else +else $as_nop ac_cv_have___clear_cache="no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have___clear_cache" >&5 -$as_echo "$ac_cv_have___clear_cache" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have___clear_cache" >&5 +printf "%s\n" "$ac_cv_have___clear_cache" >&6; } if test "$ac_cv_have___clear_cache" = "yes" then
-$as_echo "#define HAVE___CLEAR_CACHE 1" >>confdefs.h +printf "%s\n" "#define HAVE___CLEAR_CACHE 1" >>confdefs.h
fi
case $host_cpu in - *i[3456789]86*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __i386__" >&5 -$as_echo_n "checking whether we need to define __i386__... " >&6; } -if ${ac_cv_cpp_def___i386__+:} false; then : - $as_echo_n "(cached) " >&6 -else + *i[3456789]86*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __i386__" >&5 +printf %s "checking whether we need to define __i386__... " >&6; } +if test ${ac_cv_cpp_def___i386__+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __i386__ @@ -19666,25 +22226,28 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "yes" >/dev/null 2>&1; then : + $EGREP "yes" >/dev/null 2>&1 +then : ac_cv_cpp_def___i386__=yes -else +else $as_nop ac_cv_cpp_def___i386__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___i386__" >&5 -$as_echo "$ac_cv_cpp_def___i386__" >&6; } -if test "x$ac_cv_cpp_def___i386__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___i386__" >&5 +printf "%s\n" "$ac_cv_cpp_def___i386__" >&6; } +if test "x$ac_cv_cpp_def___i386__" = xyes +then : CFLAGS="$CFLAGS -D__i386__" LINTFLAGS="$LINTFLAGS -D__i386__" fi ;; - *x86_64*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __x86_64__" >&5 -$as_echo_n "checking whether we need to define __x86_64__... " >&6; } -if ${ac_cv_cpp_def___x86_64__+:} false; then : - $as_echo_n "(cached) " >&6 -else + *x86_64*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __x86_64__" >&5 +printf %s "checking whether we need to define __x86_64__... " >&6; } +if test ${ac_cv_cpp_def___x86_64__+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __x86_64__ @@ -19692,25 +22255,28 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "yes" >/dev/null 2>&1; then : + $EGREP "yes" >/dev/null 2>&1 +then : ac_cv_cpp_def___x86_64__=yes -else +else $as_nop ac_cv_cpp_def___x86_64__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___x86_64__" >&5 -$as_echo "$ac_cv_cpp_def___x86_64__" >&6; } -if test "x$ac_cv_cpp_def___x86_64__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___x86_64__" >&5 +printf "%s\n" "$ac_cv_cpp_def___x86_64__" >&6; } +if test "x$ac_cv_cpp_def___x86_64__" = xyes +then : CFLAGS="$CFLAGS -D__x86_64__" LINTFLAGS="$LINTFLAGS -D__x86_64__" fi ;; - *sparc64*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __sparc64__" >&5 -$as_echo_n "checking whether we need to define __sparc64__... " >&6; } -if ${ac_cv_cpp_def___sparc64__+:} false; then : - $as_echo_n "(cached) " >&6 -else + *sparc64*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __sparc64__" >&5 +printf %s "checking whether we need to define __sparc64__... " >&6; } +if test ${ac_cv_cpp_def___sparc64__+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __sparc64__ @@ -19718,25 +22284,28 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "yes" >/dev/null 2>&1; then : + $EGREP "yes" >/dev/null 2>&1 +then : ac_cv_cpp_def___sparc64__=yes -else +else $as_nop ac_cv_cpp_def___sparc64__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___sparc64__" >&5 -$as_echo "$ac_cv_cpp_def___sparc64__" >&6; } -if test "x$ac_cv_cpp_def___sparc64__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___sparc64__" >&5 +printf "%s\n" "$ac_cv_cpp_def___sparc64__" >&6; } +if test "x$ac_cv_cpp_def___sparc64__" = xyes +then : CFLAGS="$CFLAGS -D__sparc64__" LINTFLAGS="$LINTFLAGS -D__sparc64__" fi ;; - *sparc*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __sparc__" >&5 -$as_echo_n "checking whether we need to define __sparc__... " >&6; } -if ${ac_cv_cpp_def___sparc__+:} false; then : - $as_echo_n "(cached) " >&6 -else + *sparc*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __sparc__" >&5 +printf %s "checking whether we need to define __sparc__... " >&6; } +if test ${ac_cv_cpp_def___sparc__+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __sparc__ @@ -19744,25 +22313,28 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "yes" >/dev/null 2>&1; then : + $EGREP "yes" >/dev/null 2>&1 +then : ac_cv_cpp_def___sparc__=yes -else +else $as_nop ac_cv_cpp_def___sparc__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___sparc__" >&5 -$as_echo "$ac_cv_cpp_def___sparc__" >&6; } -if test "x$ac_cv_cpp_def___sparc__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___sparc__" >&5 +printf "%s\n" "$ac_cv_cpp_def___sparc__" >&6; } +if test "x$ac_cv_cpp_def___sparc__" = xyes +then : CFLAGS="$CFLAGS -D__sparc__" LINTFLAGS="$LINTFLAGS -D__sparc__" fi ;; - *powerpc64*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __powerpc64__" >&5 -$as_echo_n "checking whether we need to define __powerpc64__... " >&6; } -if ${ac_cv_cpp_def___powerpc64__+:} false; then : - $as_echo_n "(cached) " >&6 -else + *powerpc64*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __powerpc64__" >&5 +printf %s "checking whether we need to define __powerpc64__... " >&6; } +if test ${ac_cv_cpp_def___powerpc64__+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __powerpc64__ @@ -19770,25 +22342,28 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "yes" >/dev/null 2>&1; then : + $EGREP "yes" >/dev/null 2>&1 +then : ac_cv_cpp_def___powerpc64__=yes -else +else $as_nop ac_cv_cpp_def___powerpc64__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___powerpc64__" >&5 -$as_echo "$ac_cv_cpp_def___powerpc64__" >&6; } -if test "x$ac_cv_cpp_def___powerpc64__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___powerpc64__" >&5 +printf "%s\n" "$ac_cv_cpp_def___powerpc64__" >&6; } +if test "x$ac_cv_cpp_def___powerpc64__" = xyes +then : CFLAGS="$CFLAGS -D__powerpc64__" LINTFLAGS="$LINTFLAGS -D__powerpc64__" fi ;; - *powerpc*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __powerpc__" >&5 -$as_echo_n "checking whether we need to define __powerpc__... " >&6; } -if ${ac_cv_cpp_def___powerpc__+:} false; then : - $as_echo_n "(cached) " >&6 -else + *powerpc*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __powerpc__" >&5 +printf %s "checking whether we need to define __powerpc__... " >&6; } +if test ${ac_cv_cpp_def___powerpc__+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __powerpc__ @@ -19796,25 +22371,28 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "yes" >/dev/null 2>&1; then : + $EGREP "yes" >/dev/null 2>&1 +then : ac_cv_cpp_def___powerpc__=yes -else +else $as_nop ac_cv_cpp_def___powerpc__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___powerpc__" >&5 -$as_echo "$ac_cv_cpp_def___powerpc__" >&6; } -if test "x$ac_cv_cpp_def___powerpc__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___powerpc__" >&5 +printf "%s\n" "$ac_cv_cpp_def___powerpc__" >&6; } +if test "x$ac_cv_cpp_def___powerpc__" = xyes +then : CFLAGS="$CFLAGS -D__powerpc__" LINTFLAGS="$LINTFLAGS -D__powerpc__" fi ;; - *aarch64*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __aarch64__" >&5 -$as_echo_n "checking whether we need to define __aarch64__... " >&6; } -if ${ac_cv_cpp_def___aarch64__+:} false; then : - $as_echo_n "(cached) " >&6 -else + *aarch64*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __aarch64__" >&5 +printf %s "checking whether we need to define __aarch64__... " >&6; } +if test ${ac_cv_cpp_def___aarch64__+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __aarch64__ @@ -19822,25 +22400,28 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "yes" >/dev/null 2>&1; then : + $EGREP "yes" >/dev/null 2>&1 +then : ac_cv_cpp_def___aarch64__=yes -else +else $as_nop ac_cv_cpp_def___aarch64__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___aarch64__" >&5 -$as_echo "$ac_cv_cpp_def___aarch64__" >&6; } -if test "x$ac_cv_cpp_def___aarch64__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___aarch64__" >&5 +printf "%s\n" "$ac_cv_cpp_def___aarch64__" >&6; } +if test "x$ac_cv_cpp_def___aarch64__" = xyes +then : CFLAGS="$CFLAGS -D__aarch64__" LINTFLAGS="$LINTFLAGS -D__aarch64__" fi ;; - *arm*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __arm__" >&5 -$as_echo_n "checking whether we need to define __arm__... " >&6; } -if ${ac_cv_cpp_def___arm__+:} false; then : - $as_echo_n "(cached) " >&6 -else + *arm*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __arm__" >&5 +printf %s "checking whether we need to define __arm__... " >&6; } +if test ${ac_cv_cpp_def___arm__+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __arm__ @@ -19848,28 +22429,31 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "yes" >/dev/null 2>&1; then : + $EGREP "yes" >/dev/null 2>&1 +then : ac_cv_cpp_def___arm__=yes -else +else $as_nop ac_cv_cpp_def___arm__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___arm__" >&5 -$as_echo "$ac_cv_cpp_def___arm__" >&6; } -if test "x$ac_cv_cpp_def___arm__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___arm__" >&5 +printf "%s\n" "$ac_cv_cpp_def___arm__" >&6; } +if test "x$ac_cv_cpp_def___arm__" = xyes +then : CFLAGS="$CFLAGS -D__arm__" LINTFLAGS="$LINTFLAGS -D__arm__" fi ;; esac
case $host_vendor in - *sun*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __sun__" >&5 -$as_echo_n "checking whether we need to define __sun__... " >&6; } -if ${ac_cv_cpp_def___sun__+:} false; then : - $as_echo_n "(cached) " >&6 -else + *sun*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __sun__" >&5 +printf %s "checking whether we need to define __sun__... " >&6; } +if test ${ac_cv_cpp_def___sun__+y} +then : + printf %s "(cached) " >&6 +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __sun__ @@ -19877,17 +22461,19 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "yes" >/dev/null 2>&1; then : + $EGREP "yes" >/dev/null 2>&1 +then : ac_cv_cpp_def___sun__=yes -else +else $as_nop ac_cv_cpp_def___sun__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___sun__" >&5 -$as_echo "$ac_cv_cpp_def___sun__" >&6; } -if test "x$ac_cv_cpp_def___sun__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___sun__" >&5 +printf "%s\n" "$ac_cv_cpp_def___sun__" >&6; } +if test "x$ac_cv_cpp_def___sun__" = xyes +then : CFLAGS="$CFLAGS -D__sun__" LINTFLAGS="$LINTFLAGS -D__sun__" fi ;; @@ -19899,7 +22485,7 @@ esac
ac_config_commands="$ac_config_commands include/stamp-h"
-$as_echo_n "creating Makefile rules..." >&6 +printf %s "creating Makefile rules..." >&6
ALL_VARS_RULES="I386_LIBS = $I386_LIBS OPENGL_LIBS = $OPENGL_LIBS @@ -20133,6 +22719,7 @@ wine_fn_config_makefile dlls/api-ms-win-core-processthreads-l1-1-0 enable_api_ms wine_fn_config_makefile dlls/api-ms-win-core-processthreads-l1-1-1 enable_api_ms_win_core_processthreads_l1_1_1 wine_fn_config_makefile dlls/api-ms-win-core-processthreads-l1-1-2 enable_api_ms_win_core_processthreads_l1_1_2 wine_fn_config_makefile dlls/api-ms-win-core-processthreads-l1-1-3 enable_api_ms_win_core_processthreads_l1_1_3 +wine_fn_config_makefile dlls/api-ms-win-core-processtopology-l1-1-0 enable_api_ms_win_core_processtopology_l1_1_0 wine_fn_config_makefile dlls/api-ms-win-core-processtopology-obsolete-l1-1-0 enable_api_ms_win_core_processtopology_obsolete_l1_1_0 wine_fn_config_makefile dlls/api-ms-win-core-profile-l1-1-0 enable_api_ms_win_core_profile_l1_1_0 wine_fn_config_makefile dlls/api-ms-win-core-psapi-ansi-l1-1-0 enable_api_ms_win_core_psapi_ansi_l1_1_0 @@ -21422,7 +24009,7 @@ server/wineserver" esac fi
-$as_echo " done" >&6 +printf "%s\n" " done" >&6 cat >confcache <<_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure @@ -21450,8 +24037,8 @@ _ACEOF case $ac_val in #( *${as_nl}*) case $ac_var in #( - *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 -$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( @@ -21481,15 +24068,15 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; /^ac_cv_env_/b end t clear :clear - s/^([^=]*)=(.*[{}].*)$/test "${\1+set}" = set || &/ + s/^([^=]*)=(.*[{}].*)$/test ${\1+y} || &/ t end s/^([^=]*)=(.*)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 -$as_echo "$as_me: updating cache $cache_file" >&6;} + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 +printf "%s\n" "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else @@ -21503,8 +24090,8 @@ $as_echo "$as_me: updating cache $cache_file" >&6;} fi fi else - { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 -$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 +printf "%s\n" "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache @@ -21521,7 +24108,7 @@ U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/$U././;s/.o$//;s/.obj$//' - ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + ac_i=`printf "%s\n" "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " ${LIBOBJDIR}$ac_i$U.$ac_objext" @@ -21537,8 +24124,8 @@ LTLIBOBJS=$ac_ltlibobjs ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 -$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +printf "%s\n" "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL @@ -21561,14 +24148,16 @@ cat >>$CONFIG_STATUS <<_ASEOF || as_write_fail=1
# Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : +as_nop=: +if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 +then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST -else +else $as_nop case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( @@ -21578,46 +24167,46 @@ esac fi
+ +# Reset variables that may have inherited troublesome values from +# the environment. + +# IFS needs to be set, to space, tab, and newline, in precisely that order. +# (If _AS_PATH_WALK were called with IFS unset, it would have the +# side effect of setting IFS to empty, thus disabling word splitting.) +# Quoting is to prevent editors from complaining about space-tab. as_nl=' ' export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \ - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='print -r --' - as_echo_n='print -rn --' -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then - as_echo='printf %s\n' - as_echo_n='printf %s' -else - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' - as_echo_n='/usr/ucb/echo -n' - else - as_echo_body='eval expr "X$1" : "X\(.*\)"' - as_echo_n_body='eval - arg=$1; - case $arg in #( - *"$as_nl"*) - expr "X$arg" : "X\(.*\)$as_nl"; - arg=`expr "X$arg" : ".*$as_nl\(.*\)"`;; - esac; - expr "X$arg" : "X\(.*\)" | tr -d "$as_nl" - ' - export as_echo_n_body - as_echo_n='sh -c $as_echo_n_body as_echo' - fi - export as_echo_body - as_echo='sh -c $as_echo_body as_echo' -fi +IFS=" "" $as_nl" + +PS1='$ ' +PS2='> ' +PS4='+ ' + +# Ensure predictable behavior from utilities with locale-dependent output. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# We cannot yet rely on "unset" to work, but we need these variables +# to be unset--not just set to an empty or harmless value--now, to +# avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct +# also avoids known problems related to "unset" and subshell syntax +# in other old shells (e.g. bash 2.01 and pdksh 5.2.14). +for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH +do eval test ${$as_var+y} \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done + +# Ensure that fds 0, 1, and 2 are open. +if (exec 3>&0) 2>/dev/null; then :; else exec 0</dev/null; fi +if (exec 3>&1) 2>/dev/null; then :; else exec 1>/dev/null; fi +if (exec 3>&2) ; then :; else exec 2>/dev/null; fi
# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then +if ${PATH_SEPARATOR+false} :; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || @@ -21626,13 +24215,6 @@ if test "${PATH_SEPARATOR+set}" != set; then fi
-# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl" - # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( @@ -21641,8 +24223,12 @@ case $0 in #(( for as_dir in $PATH do IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac + test -r "$as_dir$0" && as_myself=$as_dir$0 && break done IFS=$as_save_IFS
@@ -21654,30 +24240,10 @@ if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi
-# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x${$as_var+set} = xset \ - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
# as_fn_error STATUS ERROR [LINENO LOG_FD] @@ -21690,13 +24256,14 @@ as_fn_error () as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi - $as_echo "$as_me: error: $2" >&2 + printf "%s\n" "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error
+ # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. @@ -21723,18 +24290,20 @@ as_fn_unset () { eval $1=; unset $1;} } as_unset=as_fn_unset + # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. -if (eval "as_var=1; as_var+=2; test x$as_var = x12") 2>/dev/null; then : +if (eval "as_var=1; as_var+=2; test x$as_var = x12") 2>/dev/null +then : eval 'as_fn_append () { eval $1+=$2 }' -else +else $as_nop as_fn_append () { eval $1=$$1$2 @@ -21746,12 +24315,13 @@ fi # as_fn_append # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. -if (eval "test $(( 1 + 1 )) = 2") 2>/dev/null; then : +if (eval "test $(( 1 + 1 )) = 2") 2>/dev/null +then : eval 'as_fn_arith () { as_val=$(( $* )) }' -else +else $as_nop as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` @@ -21782,7 +24352,7 @@ as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/([^/][^/]*)/*$' | \ X"$0" : 'X(//)$' | \ X"$0" : 'X(/)' | . 2>/dev/null || -$as_echo X/"$0" | +printf "%s\n" X/"$0" | sed '/^.*/([^/][^/]*)/*$/{ s//\1/ q @@ -21804,6 +24374,10 @@ as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits
+ +# Determine whether it's possible to make 'echo' print without a newline. +# These variables are no longer used directly by Autoconf, but are AC_SUBSTed +# for compatibility with existing Makefiles. ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) @@ -21817,6 +24391,12 @@ case `echo -n x` in #((((( ECHO_N='-n';; esac
+# For backward compatibility with old third-party macros, we provide +# the shell variables $as_echo and $as_echo_n. New code should use +# AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively. +as_echo='printf %s\n' +as_echo_n='printf %s' + rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file @@ -21858,7 +24438,7 @@ as_fn_mkdir_p () as_dirs= while :; do case $as_dir in #( - *'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\''/g"`;; #'( + *'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" @@ -21867,7 +24447,7 @@ $as_expr X"$as_dir" : 'X(.*[^/])//*[^/][^/]*/*$' | \ X"$as_dir" : 'X(//)[^/]' | \ X"$as_dir" : 'X(//)$' | \ X"$as_dir" : 'X(/)' | . 2>/dev/null || -$as_echo X"$as_dir" | +printf "%s\n" X"$as_dir" | sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//\1/ q @@ -21930,7 +24510,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # values after options handling. ac_log=" This file was extended by Wine $as_me 6.16, which was -generated by GNU Autoconf 2.69. Invocation command line was +generated by GNU Autoconf 2.71. Invocation command line was
CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS @@ -21997,14 +24577,16 @@ Report bugs to wine-devel@winehq.org. Wine home page: https://www.winehq.org."
_ACEOF +ac_cs_config=`printf "%s\n" "$ac_configure_args" | sed "$ac_safe_unquote"` +ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\''/g"` cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\""`$]/\\&/g'`" +ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\ Wine config.status 6.16 -configured by $0, generated by GNU Autoconf 2.69, +configured by $0, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\"
-Copyright (C) 2012 Free Software Foundation, Inc. +Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it."
@@ -22041,15 +24623,15 @@ do -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) - $as_echo "$ac_cs_version"; exit ;; + printf "%s\n" "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) - $as_echo "$ac_cs_config"; exit ;; + printf "%s\n" "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in - *'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\''/g"` ;; + *'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" @@ -22057,7 +24639,7 @@ do --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in - *'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\''/g"` ;; + *'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; @@ -22066,7 +24648,7 @@ do as_fn_error $? "ambiguous option: `$1' Try `$0 --help' for more information.";; --help | --hel | -h ) - $as_echo "$ac_cs_usage"; exit ;; + printf "%s\n" "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; @@ -22094,7 +24676,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if $ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args $ac_configure_extra_args --no-create --no-recursion shift - $as_echo "running CONFIG_SHELL=$SHELL $*" >&6 + \printf "%s\n" "running CONFIG_SHELL=$SHELL $*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "$@" @@ -22108,7 +24690,7 @@ exec 5>>config.log sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX - $as_echo "$ac_log" + printf "%s\n" "$ac_log" } >&5
_ACEOF @@ -22155,10 +24737,10 @@ done # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers - test "${CONFIG_LINKS+set}" = set || CONFIG_LINKS=$config_links - test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands + test ${CONFIG_FILES+y} || CONFIG_FILES=$config_files + test ${CONFIG_HEADERS+y} || CONFIG_HEADERS=$config_headers + test ${CONFIG_LINKS+y} || CONFIG_LINKS=$config_links + test ${CONFIG_COMMANDS+y} || CONFIG_COMMANDS=$config_commands fi
# Have a temporary directory for convenience. Make it in the build tree @@ -22494,7 +25076,7 @@ do esac || as_fn_error 1 "cannot find input file: `$ac_f'" "$LINENO" 5;; esac - case $ac_f in *'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\''/g"`;; esac + case $ac_f in *'*) ac_f=`printf "%s\n" "$ac_f" | sed "s/'/'\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done
@@ -22502,17 +25084,17 @@ do # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` - $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + printf "%s\n" "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" - { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 -$as_echo "$as_me: creating $ac_file" >&6;} + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +printf "%s\n" "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *&* | *|* | *\* ) - ac_sed_conf_input=`$as_echo "$configure_input" | + ac_sed_conf_input=`printf "%s\n" "$configure_input" | sed 's/[\\&|]/\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac @@ -22529,7 +25111,7 @@ $as_expr X"$ac_file" : 'X(.*[^/])//*[^/][^/]*/*$' | \ X"$ac_file" : 'X(//)[^/]' | \ X"$ac_file" : 'X(//)$' | \ X"$ac_file" : 'X(/)' | . 2>/dev/null || -$as_echo X"$ac_file" | +printf "%s\n" X"$ac_file" | sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//\1/ q @@ -22553,9 +25135,9 @@ $as_echo X"$ac_file" | case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^.[\/]||'` + ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^.[\/]||'` # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\/]*|/..|g;s|/||'` + ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; @@ -22608,8 +25190,8 @@ ac_sed_dataroot=' case `eval "sed -n "$ac_sed_dataroot" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +printf "%s\n" "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' @@ -22651,9 +25233,9 @@ test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable `datarootdir' + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable `datarootdir' which seems to be undefined. Please make sure it is defined" >&5 -$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable `datarootdir' +printf "%s\n" "$as_me: WARNING: $ac_file contains a reference to the variable `datarootdir' which seems to be undefined. Please make sure it is defined" >&2;}
rm -f "$ac_tmp/stdin" @@ -22669,20 +25251,20 @@ which seems to be undefined. Please make sure it is defined" >&2;} # if test x"$ac_file" != x-; then { - $as_echo "/* $configure_input */" \ + printf "%s\n" "/* $configure_input */" >&1 \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then - { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 -$as_echo "$as_me: $ac_file is unchanged" >&6;} + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +printf "%s\n" "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else - $as_echo "/* $configure_input */" \ + printf "%s\n" "/* $configure_input */" >&1 \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi @@ -22700,8 +25282,8 @@ $as_echo "$as_me: $ac_file is unchanged" >&6;} ac_source=$srcdir/$ac_source fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: linking $ac_source to $ac_file" >&5 -$as_echo "$as_me: linking $ac_source to $ac_file" >&6;} + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: linking $ac_source to $ac_file" >&5 +printf "%s\n" "$as_me: linking $ac_source to $ac_file" >&6;}
if test ! -r "$ac_source"; then as_fn_error $? "$ac_source: file not found" "$LINENO" 5 @@ -22719,8 +25301,8 @@ $as_echo "$as_me: linking $ac_source to $ac_file" >&6;} as_fn_error $? "cannot link or copy $ac_source to $ac_file" "$LINENO" 5 fi ;; - :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 -$as_echo "$as_me: executing $ac_file commands" >&6;} + :C) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 +printf "%s\n" "$as_me: executing $ac_file commands" >&6;} ;; esac
@@ -22763,8 +25345,8 @@ if test "$no_create" != yes; then $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 -$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi
@@ -22779,28 +25361,31 @@ if test "x$wine_notices" != x; then IFS="|" for msg in $wine_notices; do IFS="$ac_save_IFS" - if ${msg:+false} :; then : + if ${msg:+false} : +then :
-else - { $as_echo "$as_me:${as_lineno-$LINENO}: $msg" >&5 -$as_echo "$as_me: $msg" >&6;} +else $as_nop + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $msg" >&5 +printf "%s\n" "$as_me: $msg" >&6;} fi done fi IFS="|" for msg in $wine_warnings; do IFS="$ac_save_IFS" - if ${msg:+false} :; then : + if ${msg:+false} : +then :
-else +else $as_nop echo >&2 - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $msg" >&5 -$as_echo "$as_me: WARNING: $msg" >&2;} + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $msg" >&5 +printf "%s\n" "$as_me: WARNING: $msg" >&2;} fi done IFS="$ac_save_IFS"
-$as_echo " +printf "%s\n" " $as_me: Finished. Do '${ac_make}' to compile Wine. " >&6
+ diff --git a/configure.ac b/configure.ac index 594794ed93c..516d19675be 100644 --- a/configure.ac +++ b/configure.ac @@ -2833,6 +2833,7 @@ WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-processthreads-l1-1-0) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-processthreads-l1-1-1) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-processthreads-l1-1-2) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-processthreads-l1-1-3) +WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-processtopology-l1-1-0) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-processtopology-obsolete-l1-1-0) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-profile-l1-1-0) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-psapi-ansi-l1-1-0) diff --git a/dlls/api-ms-win-core-processtopology-l1-1-0/Makefile.in b/dlls/api-ms-win-core-processtopology-l1-1-0/Makefile.in new file mode 100644 index 00000000000..c6a3d3257e4 --- /dev/null +++ b/dlls/api-ms-win-core-processtopology-l1-1-0/Makefile.in @@ -0,0 +1 @@ +MODULE = api-ms-win-core-processtopology-l1-1-0.dll diff --git a/dlls/api-ms-win-core-processtopology-l1-1-0/api-ms-win-core-processtopology-l1-1-0.spec b/dlls/api-ms-win-core-processtopology-l1-1-0/api-ms-win-core-processtopology-l1-1-0.spec new file mode 100644 index 00000000000..c843a07fcaa --- /dev/null +++ b/dlls/api-ms-win-core-processtopology-l1-1-0/api-ms-win-core-processtopology-l1-1-0.spec @@ -0,0 +1,4 @@ +@ stdcall GetProcessGroupAffinity(long ptr ptr) kernel32.GetProcessGroupAffinity +@ stdcall GetThreadGroupAffinity(long ptr) kernel32.GetThreadGroupAffinity +@ stdcall SetProcessGroupAffinity(long ptr ptr) kernelbase.SetProcessGroupAffinity +@ stdcall SetThreadGroupAffinity(long ptr ptr) kernel32.SetThreadGroupAffinity diff --git a/include/config.h.in b/include/config.h.in index 2b488894a49..9f31d623615 100644 --- a/include/config.h.in +++ b/include/config.h.in @@ -396,9 +396,6 @@ /* Define to 1 if you have the <mach-o/loader.h> header file. */ #undef HAVE_MACH_O_LOADER_H
-/* Define to 1 if you have the <memory.h> header file. */ -#undef HAVE_MEMORY_H - /* Define to 1 if you have the <Metal/Metal.h> header file. */ #undef HAVE_METAL_METAL_H
@@ -618,6 +615,9 @@ /* Define to 1 if you have the <stdint.h> header file. */ #undef HAVE_STDINT_H
+/* Define to 1 if you have the <stdio.h> header file. */ +#undef HAVE_STDIO_H + /* Define to 1 if you have the <stdlib.h> header file. */ #undef HAVE_STDLIB_H
@@ -1178,17 +1178,14 @@ /* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */ #undef STAT_MACROS_BROKEN
-/* Define to 1 if you have the ANSI C header files. */ +/* Define to 1 if all of the C90 standard headers exist (not just the ones + required in a freestanding environment). This macro is provided for + backward compatibility; new code need not use it. */ #undef STDC_HEADERS
/* Define to 1 if the X Window System is missing or not being used. */ #undef X_DISPLAY_MISSING
-/* Enable large inode numbers on Mac OS X 10.5. */ -#ifndef _DARWIN_USE_64_BIT_INODE -# define _DARWIN_USE_64_BIT_INODE 1 -#endif - /* Number of bits in a file offset, on hosts where this is settable. */ #undef _FILE_OFFSET_BITS
diff --git a/tools/make_specfiles b/tools/make_specfiles index 44abb58b0a8..a7ee7e7f4db 100755 --- a/tools/make_specfiles +++ b/tools/make_specfiles @@ -297,6 +297,7 @@ my @dll_groups = "api-ms-win-core-wow64-l1-1-0", "api-ms-win-core-wow64-l1-1-1", "api-ms-win-core-xstate-l2-1-0", + "api-ms-win-core-processtopology-l1-1-0", "api-ms-win-core-processtopology-obsolete-l1-1-0", "api-ms-win-core-util-l1-1-0", "api-ms-win-downlevel-kernel32-l2-1-0",
On 8/31/21 6:45 PM, Guillaume Charifi wrote:
Signed-off-by: Guillaume Charifi guillaume.charifi@sfr.fr
configure | 15341 +++++++++-------
You don't need to submit generated files.
configure.ac | 1 + .../Makefile.in | 1 + ...pi-ms-win-core-processtopology-l1-1-0.spec | 4 + include/config.h.in | 15 +- tools/make_specfiles | 1 + 6 files changed, 8976 insertions(+), 6387 deletions(-) create mode 100644 dlls/api-ms-win-core-processtopology-l1-1-0/Makefile.in create mode 100644 dlls/api-ms-win-core-processtopology-l1-1-0/api-ms-win-core-processtopology-l1-1-0.spec
diff --git a/configure b/configure index 5f8735b0d37..f25bc433740 100755 --- a/configure +++ b/configure @@ -1,11 +1,12 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for Wine 6.16. +# Generated by GNU Autoconf 2.71 for Wine 6.16. # # Report bugs to wine-devel@winehq.org. # # -# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. +# Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation, +# Inc. # # # This configure script is free software; the Free Software Foundation @@ -16,14 +17,16 @@
# Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : +as_nop=: +if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 +then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST -else +else $as_nop case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( @@ -33,46 +36,46 @@ esac fi
+# Reset variables that may have inherited troublesome values from +# the environment.
+# IFS needs to be set, to space, tab, and newline, in precisely that order. +# (If _AS_PATH_WALK were called with IFS unset, it would have the +# side effect of setting IFS to empty, thus disabling word splitting.) +# Quoting is to prevent editors from complaining about space-tab. as_nl=' ' export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \
- && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='print -r --'
- as_echo_n='print -rn --'
-elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='printf %s\n'
- as_echo_n='printf %s'
-else
- if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
- as_echo_n='/usr/ucb/echo -n'
- else
- as_echo_body='eval expr "X$1" : "X\(.*\)"'
- as_echo_n_body='eval
arg=$1;
case $arg in #(
*"$as_nl"*)
- expr "X$arg" : "X\(.*\)$as_nl";
- arg=`expr "X$arg" : ".*$as_nl\(.*\)"`;;
esac;
expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
- '
- export as_echo_n_body
- as_echo_n='sh -c $as_echo_n_body as_echo'
- fi
- export as_echo_body
- as_echo='sh -c $as_echo_body as_echo'
-fi +IFS=" "" $as_nl"
+PS1='$ ' +PS2='> ' +PS4='+ '
+# Ensure predictable behavior from utilities with locale-dependent output. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE
+# We cannot yet rely on "unset" to work, but we need these variables +# to be unset--not just set to an empty or harmless value--now, to +# avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct +# also avoids known problems related to "unset" and subshell syntax +# in other old shells (e.g. bash 2.01 and pdksh 5.2.14). +for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH +do eval test ${$as_var+y} \
- && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
+done
+# Ensure that fds 0, 1, and 2 are open. +if (exec 3>&0) 2>/dev/null; then :; else exec 0</dev/null; fi +if (exec 3>&1) 2>/dev/null; then :; else exec 1>/dev/null; fi +if (exec 3>&2) ; then :; else exec 2>/dev/null; fi
# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then +if ${PATH_SEPARATOR+false} :; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || @@ -81,13 +84,6 @@ if test "${PATH_SEPARATOR+set}" != set; then fi
-# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl"
# Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( @@ -96,8 +92,12 @@ case $0 in #(( for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac
- test -r "$as_dir$0" && as_myself=$as_dir$0 && break done
IFS=$as_save_IFS
@@ -109,30 +109,10 @@ if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then
- $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
- printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1
fi
-# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x${$as_var+set} = xset \
- && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
-done -PS1='$ ' -PS2='> ' -PS4='+ '
-# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE
-# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
# Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. @@ -154,20 +134,22 @@ esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. -$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 -as_fn_exit 255 +printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2 +exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then
- as_bourne_compatible="if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
- as_bourne_compatible="as_nop=:
+if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 +then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST -else +else $as_nop case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( @@ -187,42 +169,53 @@ as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } -if ( set x; as_fn_ret_success y && test x = "$1" ); then : +if ( set x; as_fn_ret_success y && test x = "$1" ) +then :
-else +else $as_nop exitcode=1; echo positional parameters were not saved. fi test x$exitcode = x0 || exit 1 +blah=$(echo $(echo blah)) +test x"$blah" = xblah || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || exit 1 test $(( 1 + 1 )) = 2 || exit 1"
- if (eval "$as_required") 2>/dev/null; then :
- if (eval "$as_required") 2>/dev/null
+then : as_have_required=yes -else +else $as_nop as_have_required=no fi
- if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
- if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null
+then :
-else +else $as_nop as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks.
as_shell=$as_dir/$as_base
as_shell=$as_dir$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
{ $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
as_run=a "$as_shell" -c "$as_bourne_compatible""$as_required" 2>/dev/null
+then : CONFIG_SHELL=$as_shell as_have_required=yes
if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
if as_run=a "$as_shell" -c "$as_bourne_compatible""$as_suggested" 2>/dev/null
+then : break 2 fi fi @@ -230,14 +223,21 @@ fi esac as_found=false done -$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
{ $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
- CONFIG_SHELL=$SHELL as_have_required=yes
-fi; } IFS=$as_save_IFS +if $as_found +then :
+else $as_nop
- if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
as_run=a "$SHELL" -c "$as_bourne_compatible""$as_required" 2>/dev/null
+then :
- CONFIG_SHELL=$SHELL as_have_required=yes
+fi +fi
if test "x$CONFIG_SHELL" != x; then :
if test "x$CONFIG_SHELL" != x
+then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also @@ -255,18 +255,19 @@ esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. -$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi
- if test x$as_have_required = xno; then :
- $as_echo "$0: This script requires a shell more modern than all"
- $as_echo "$0: the shells that I found on your system."
- if test x${ZSH_VERSION+set} = xset ; then
- $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
- $as_echo "$0: be upgraded to zsh 4.3.4 or later."
- if test x$as_have_required = xno
+then :
- printf "%s\n" "$0: This script requires a shell more modern than all"
- printf "%s\n" "$0: the shells that I found on your system."
- if test ${ZSH_VERSION+y} ; then
- printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should"
- printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later." else
- $as_echo "$0: Please tell bug-autoconf@gnu.org and
- printf "%s\n" "$0: Please tell bug-autoconf@gnu.org and
$0: wine-devel@winehq.org about your system, including any $0: error possibly output before this message. Then install $0: a modern shell, or manually run the script under such a @@ -294,6 +295,7 @@ as_fn_unset () } as_unset=as_fn_unset
# as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. @@ -311,6 +313,14 @@ as_fn_exit () as_fn_set_status $1 exit $1 } # as_fn_exit +# as_fn_nop +# --------- +# Do nothing but, unlike ":", preserve the value of $?. +as_fn_nop () +{
- return $?
+} +as_nop=as_fn_nop
# as_fn_mkdir_p # ------------- @@ -325,7 +335,7 @@ as_fn_mkdir_p () as_dirs= while :; do case $as_dir in #(
*\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
*\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs"
@@ -334,7 +344,7 @@ $as_expr X"$as_dir" : 'X(.*[^/])//*[^/][^/]*/*$' | \ X"$as_dir" : 'X(//)[^/]' | \ X"$as_dir" : 'X(//)$' | \ X"$as_dir" : 'X(/)' | . 2>/dev/null || -$as_echo X"$as_dir" | +printf "%s\n" X"$as_dir" | sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//\1/ q @@ -373,12 +383,13 @@ as_fn_executable_p () # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. -if (eval "as_var=1; as_var+=2; test x$as_var = x12") 2>/dev/null; then : +if (eval "as_var=1; as_var+=2; test x$as_var = x12") 2>/dev/null +then : eval 'as_fn_append () { eval $1+=$2 }' -else +else $as_nop as_fn_append () { eval $1=$$1$2 @@ -390,18 +401,27 @@ fi # as_fn_append # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. -if (eval "test $(( 1 + 1 )) = 2") 2>/dev/null; then : +if (eval "test $(( 1 + 1 )) = 2") 2>/dev/null +then : eval 'as_fn_arith () { as_val=$(( $* )) }' -else +else $as_nop as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith
+# as_fn_nop +# --------- +# Do nothing but, unlike ":", preserve the value of $?. +as_fn_nop () +{
- return $?
+} +as_nop=as_fn_nop
# as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- @@ -413,9 +433,9 @@ as_fn_error () as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi
- $as_echo "$as_me: error: $2" >&2
- printf "%s\n" "$as_me: error: $2" >&2 as_fn_exit $as_status
} # as_fn_error
@@ -442,7 +462,7 @@ as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/([^/][^/]*)/*$' | \ X"$0" : 'X(//)$' | \ X"$0" : 'X(/)' | . 2>/dev/null || -$as_echo X/"$0" | +printf "%s\n" X/"$0" | sed '/^.*/([^/][^/]*)/*$/{ s//\1/ q @@ -486,7 +506,7 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" ||
- { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
{ printf "%s\n" "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
# If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall
@@ -500,6 +520,10 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits exit }
+# Determine whether it's possible to make 'echo' print without a newline. +# These variables are no longer used directly by Autoconf, but are AC_SUBSTed +# for compatibility with existing Makefiles. ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) @@ -513,6 +537,13 @@ case `echo -n x` in #((((( ECHO_N='-n';; esac
+# For backward compatibility with old third-party macros, we provide +# the shell variables $as_echo and $as_echo_n. New code should use +# AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively. +as_echo='printf %s\n' +as_echo_n='printf %s'
rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file @@ -588,40 +619,36 @@ PACKAGE_URL='https://www.winehq.org' ac_unique_file="server/atom.c" # Factoring default headers for most tests. ac_includes_default="\ -#include <stdio.h> -#ifdef HAVE_SYS_TYPES_H -# include <sys/types.h> -#endif -#ifdef HAVE_SYS_STAT_H -# include <sys/stat.h> +#include <stddef.h> +#ifdef HAVE_STDIO_H +# include <stdio.h> #endif -#ifdef STDC_HEADERS +#ifdef HAVE_STDLIB_H # include <stdlib.h> -# include <stddef.h> -#else -# ifdef HAVE_STDLIB_H -# include <stdlib.h> -# endif #endif #ifdef HAVE_STRING_H -# if !defined STDC_HEADERS && defined HAVE_MEMORY_H -# include <memory.h> -# endif # include <string.h> #endif -#ifdef HAVE_STRINGS_H -# include <strings.h> -#endif #ifdef HAVE_INTTYPES_H # include <inttypes.h> #endif #ifdef HAVE_STDINT_H # include <stdint.h> #endif +#ifdef HAVE_STRINGS_H +# include <strings.h> +#endif +#ifdef HAVE_SYS_TYPES_H +# include <sys/types.h> +#endif +#ifdef HAVE_SYS_STAT_H +# include <sys/stat.h> +#endif #ifdef HAVE_UNISTD_H # include <unistd.h> #endif"
+ac_header_c_list= ac_subst_vars='LTLIBOBJS LIBOBJS ALL_VARS_RULES @@ -705,6 +732,7 @@ X_EXTRA_LIBS X_LIBS X_PRE_LIBS X_CFLAGS +CPP XMKMF PTHREAD_LIBS EXCESS_PRECISION_CFLAGS @@ -735,7 +763,6 @@ APPLICATIONSERVICES_LIBS FORCEFEEDBACK_LIBS IOKIT_LIBS COREFOUNDATION_LIBS -OBJCPP ac_ct_OBJC OBJCFLAGS OBJC @@ -754,7 +781,6 @@ TOP_INSTALL_LIB LDEXECFLAGS LDDLLFLAGS DLLFLAGS -CPP OPENGL_LIBS I386_LIBS ICOTOOL @@ -1012,6 +1038,7 @@ enable_api_ms_win_core_processthreads_l1_1_0 enable_api_ms_win_core_processthreads_l1_1_1 enable_api_ms_win_core_processthreads_l1_1_2 enable_api_ms_win_core_processthreads_l1_1_3 +enable_api_ms_win_core_processtopology_l1_1_0 enable_api_ms_win_core_processtopology_obsolete_l1_1_0 enable_api_ms_win_core_profile_l1_1_0 enable_api_ms_win_core_psapi_ansi_l1_1_0 @@ -1912,11 +1939,10 @@ CPPFLAGS CXX CXXFLAGS CCC -CPP OBJC OBJCFLAGS -OBJCPP XMKMF +CPP XML2_CFLAGS XML2_LIBS XSLT_CFLAGS @@ -2049,8 +2075,6 @@ do *) ac_optarg=yes ;; esac
- # Accept the important Cygnus configure options, so we can diagnose typos.
- case $ac_dashdash$ac_option in --) ac_dashdash=yes ;;
@@ -2091,9 +2115,9 @@ do ac_useropt=`expr "x$ac_option" : 'x-*disable-(.*)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
as_fn_error $? "invalid feature name: $ac_useropt"
ac_useropt_orig=$ac_useroptas_fn_error $? "invalid feature name: \`$ac_useropt'"
- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
- ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *"
"enable_$ac_useropt" @@ -2117,9 +2141,9 @@ do ac_useropt=`expr "x$ac_option" : 'x-*enable-([^=]*)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
as_fn_error $? "invalid feature name: $ac_useropt"
ac_useropt_orig=$ac_useroptas_fn_error $? "invalid feature name: \`$ac_useropt'"
- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
- ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *"
"enable_$ac_useropt" @@ -2330,9 +2354,9 @@ do ac_useropt=`expr "x$ac_option" : 'x-*with-([^=]*)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
as_fn_error $? "invalid package name: $ac_useropt"
ac_useropt_orig=$ac_useroptas_fn_error $? "invalid package name: \`$ac_useropt'"
- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
- ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *"
"with_$ac_useropt" @@ -2346,9 +2370,9 @@ do ac_useropt=`expr "x$ac_option" : 'x-*without-(.*)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
as_fn_error $? "invalid package name: $ac_useropt"
ac_useropt_orig=$ac_useroptas_fn_error $? "invalid package name: \`$ac_useropt'"
- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
- ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *"
"with_$ac_useropt" @@ -2392,9 +2416,9 @@ Try `$0 --help' for more information"
*) # FIXME: should be removed in autoconf 3.0.
- $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
- printf "%s\n" "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
$as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
: "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;;printf "%s\n" "$as_me: WARNING: invalid host type: $ac_option" >&2
@@ -2410,7 +2434,7 @@ if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
- *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
- *) printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac
fi
@@ -2474,7 +2498,7 @@ $as_expr X"$as_myself" : 'X(.*[^/])//*[^/][^/]*/*$' | \ X"$as_myself" : 'X(//)[^/]' | \ X"$as_myself" : 'X(//)$' | \ X"$as_myself" : 'X(/)' | . 2>/dev/null || -$as_echo X"$as_myself" | +printf "%s\n" X"$as_myself" | sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//\1/ q @@ -2696,11 +2720,10 @@ Some influential environment variables: you have headers in a nonstandard directory <include dir> CXX C++ compiler command CXXFLAGS C++ compiler flags
- CPP C preprocessor OBJC Objective C compiler command OBJCFLAGS Objective C compiler flags
- OBJCPP Objective C preprocessor XMKMF Path to xmkmf, Makefile generator for X Window System
- CPP C preprocessor XML2_CFLAGS C compiler flags for libxml-2.0, overriding pkg-config XML2_LIBS Linker flags for libxml-2.0, overriding pkg-config XSLT_CFLAGS C compiler flags for libxslt, overriding pkg-config
@@ -2813,9 +2836,9 @@ if test "$ac_init_help" = "recursive"; then case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *)
- ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^.[\/]||'`
- ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^.[\/]||'` # A ".." for each directory in $ac_dir_suffix.
- ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\/]*|/..|g;s|/||'`
- ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
@@ -2843,7 +2866,8 @@ esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
cd "$ac_dir" || { ac_status=$?; continue; }
- # Check for guested configure.
- # Check for configure.gnu first; this name is used for a wrapper for
- # Metaconfig's "Configure" on case-insensitive file systems. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive
@@ -2851,7 +2875,7 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix echo && $SHELL "$ac_srcdir/configure" --help=recursive else
$as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } doneprintf "%s\n" "$as_me: WARNING: no configuration information is in $ac_dir" >&2
@@ -2861,9 +2885,9 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<_ACEOF Wine configure 6.16 -generated by GNU Autoconf 2.69 +generated by GNU Autoconf 2.71
-Copyright (C) 2012 Free Software Foundation, Inc. +Copyright (C) 2021 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF @@ -2880,14 +2904,14 @@ fi ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- rm -f conftest.$ac_objext
- rm -f conftest.$ac_objext conftest.beam if { { ac_try="$ac_compile"
case "(($ac_try" in *"* | *`* | *\*) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then @@ -2895,14 +2919,15 @@ $as_echo "$ac_try_echo"; } >&5 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err
} && test -s conftest.$ac_objext; then :
} && test -s conftest.$ac_objext
+then : ac_retval=0 -else
- $as_echo "$as_me: failed program was:" >&5
+else $as_nop
- printf "%s\n" "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=1 @@ -2918,14 +2943,14 @@ fi ac_fn_cxx_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- rm -f conftest.$ac_objext
- rm -f conftest.$ac_objext conftest.beam if { { ac_try="$ac_compile"
case "(($ac_try" in *"* | *`* | *\*) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then @@ -2933,14 +2958,15 @@ $as_echo "$ac_try_echo"; } >&5 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err
} && test -s conftest.$ac_objext; then :
} && test -s conftest.$ac_objext
+then : ac_retval=0 -else
- $as_echo "$as_me: failed program was:" >&5
+else $as_nop
- printf "%s\n" "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=1 @@ -2956,14 +2982,14 @@ fi ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- rm -f conftest.$ac_objext conftest$ac_exeext
- rm -f conftest.$ac_objext conftest.beam conftest$ac_exeext if { { ac_try="$ac_link"
case "(($ac_try" in *"* | *`* | *\*) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then @@ -2971,17 +2997,18 @@ $as_echo "$ac_try_echo"; } >&5 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext
}; then :
}
+then : ac_retval=0 -else
- $as_echo "$as_me: failed program was:" >&5
+else $as_nop
- printf "%s\n" "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=1 @@ -2996,176 +3023,6 @@ fi
} # ac_fn_c_try_link
-# ac_fn_c_try_cpp LINENO -# ---------------------- -# Try to preprocess conftest.$ac_ext, and return whether this succeeded. -ac_fn_c_try_cpp () -{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- if { { ac_try="$ac_cpp conftest.$ac_ext"
-case "(($ac_try" in
- *"* | *`* | *\*) ac_try_echo=$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac -eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
- ac_status=$?
- if test -s conftest.err; then
- grep -v '^ *+' conftest.err >conftest.er1
- cat conftest.er1 >&5
- mv -f conftest.er1 conftest.err
- fi
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- test $ac_status = 0; } > conftest.i && {
test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
test ! -s conftest.err
}; then :
- ac_retval=0
-else
- $as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
- ac_retval=1
-fi
- eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
- as_fn_set_status $ac_retval
-} # ac_fn_c_try_cpp
-# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES -# ------------------------------------------------------- -# Tests whether HEADER exists, giving a warning if it cannot be compiled using -# the include files in INCLUDES and setting the cache variable VAR -# accordingly. -ac_fn_c_check_header_mongrel () -{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- if eval ${$3+:} false; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; } -if eval ${$3+:} false; then :
- $as_echo_n "(cached) " >&6
-fi -eval ac_res=$$3
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; } -else
- # Is the header compilable?
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 -$as_echo_n "checking $2 usability... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -#include <$2> -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then :
- ac_header_compiler=yes
-else
- ac_header_compiler=no
-fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 -$as_echo "$ac_header_compiler" >&6; }
-# Is the header present? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 -$as_echo_n "checking $2 presence... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <$2> -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then :
- ac_header_preproc=yes
-else
- ac_header_preproc=no
-fi -rm -f conftest.err conftest.i conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 -$as_echo "$ac_header_preproc" >&6; }
-# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((
- yes:no: )
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
-$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
-$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
- ;;
- no:yes:* )
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
-$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5
-$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
-$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section "Present But Cannot Be Compiled"" >&5
-$as_echo "$as_me: WARNING: $2: section "Present But Cannot Be Compiled"" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
-$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -( $as_echo "## ------------------------------------ ## -## Report this to wine-devel@winehq.org ## -## ------------------------------------ ##"
) | sed "s/^/$as_me: WARNING: /" >&2
- ;;
-esac
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; } -if eval ${$3+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- eval "$3=$ac_header_compiler"
-fi -eval ac_res=$$3
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; } -fi
- eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
-} # ac_fn_c_check_header_mongrel
-# ac_fn_c_try_run LINENO -# ---------------------- -# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes -# that executables *can* be run. -ac_fn_c_try_run () -{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- if { { ac_try="$ac_link"
-case "(($ac_try" in
- *"* | *`* | *\*) ac_try_echo=$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac -eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_link") 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'
- { { case "(($ac_try" in
- *"* | *`* | *\*) ac_try_echo=$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac -eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_try") 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- test $ac_status = 0; }; }; then :
- ac_retval=0
-else
- $as_echo "$as_me: program exited with status $ac_status" >&5
$as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=$ac_status
-fi
- rm -rf conftest.dSYM conftest_ipa8_conftest.oo
- eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
- as_fn_set_status $ac_retval
-} # ac_fn_c_try_run
# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in @@ -3173,26 +3030,28 @@ fi ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; } -if eval ${$3+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+printf %s "checking for $2... " >&6; } +if eval test ${$3+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : eval "$3=yes" -else +else $as_nop eval "$3=no" fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi eval ac_res=$$3
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_header_compile @@ -3203,14 +3062,14 @@ $as_echo "$ac_res" >&6; } ac_fn_objc_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- rm -f conftest.$ac_objext
- rm -f conftest.$ac_objext conftest.beam if { { ac_try="$ac_compile"
case "(($ac_try" in *"* | *`* | *\*) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then @@ -3218,14 +3077,15 @@ $as_echo "$ac_try_echo"; } >&5 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_objc_werror_flag" || test ! -s conftest.err
} && test -s conftest.$ac_objext; then :
} && test -s conftest.$ac_objext
+then : ac_retval=0 -else
- $as_echo "$as_me: failed program was:" >&5
+else $as_nop
- printf "%s\n" "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
ac_retval=1 @@ -3235,133 +3095,38 @@ fi
} # ac_fn_objc_try_compile
-# ac_fn_objc_try_cpp LINENO -# ------------------------- -# Try to preprocess conftest.$ac_ext, and return whether this succeeded. -ac_fn_objc_try_cpp () -{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- if { { ac_try="$ac_cpp conftest.$ac_ext"
-case "(($ac_try" in
- *"* | *`* | *\*) ac_try_echo=$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac -eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5
- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
- ac_status=$?
- if test -s conftest.err; then
- grep -v '^ *+' conftest.err >conftest.er1
- cat conftest.er1 >&5
- mv -f conftest.er1 conftest.err
- fi
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- test $ac_status = 0; } > conftest.i && {
test -z "$ac_objc_preproc_warn_flag$ac_objc_werror_flag" ||
test ! -s conftest.err
}; then :
- ac_retval=0
-else
- $as_echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
- ac_retval=1
-fi
- eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
- as_fn_set_status $ac_retval
-} # ac_fn_objc_try_cpp
-# ac_fn_objc_check_header_mongrel LINENO HEADER VAR INCLUDES +# ac_fn_objc_check_header_compile LINENO HEADER VAR INCLUDES # ---------------------------------------------------------- -# Tests whether HEADER exists, giving a warning if it cannot be compiled using -# the include files in INCLUDES and setting the cache variable VAR -# accordingly. -ac_fn_objc_check_header_mongrel () +# Tests whether HEADER exists and can be compiled using the include files in +# INCLUDES, setting the cache variable VAR accordingly. +ac_fn_objc_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- if eval ${$3+:} false; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; } -if eval ${$3+:} false; then :
- $as_echo_n "(cached) " >&6
-fi -eval ac_res=$$3
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; } -else
- # Is the header compilable?
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 -$as_echo_n "checking $2 usability... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+printf %s "checking for $2... " >&6; } +if eval test ${$3+y} +then :
- printf %s "(cached) " >&6
+else $as_nop
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */ $4 #include <$2> _ACEOF -if ac_fn_objc_try_compile "$LINENO"; then :
- ac_header_compiler=yes
-else
- ac_header_compiler=no
-fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 -$as_echo "$ac_header_compiler" >&6; }
-# Is the header present? -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 -$as_echo_n "checking $2 presence... " >&6; } -cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -#include <$2> -_ACEOF -if ac_fn_objc_try_cpp "$LINENO"; then :
- ac_header_preproc=yes
-else
- ac_header_preproc=no
+if ac_fn_objc_try_compile "$LINENO" +then :
- eval "$3=yes"
+else $as_nop
- eval "$3=no"
fi -rm -f conftest.err conftest.i conftest.$ac_ext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 -$as_echo "$ac_header_preproc" >&6; }
-# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_objc_preproc_warn_flag in #((
- yes:no: )
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
-$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
-$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
- ;;
- no:yes:* )
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
-$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5
-$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
-$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section "Present But Cannot Be Compiled"" >&5
-$as_echo "$as_me: WARNING: $2: section "Present But Cannot Be Compiled"" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
-$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} -( $as_echo "## ------------------------------------ ## -## Report this to wine-devel@winehq.org ## -## ------------------------------------ ##"
) | sed "s/^/$as_me: WARNING: /" >&2
- ;;
-esac
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; } -if eval ${$3+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- eval "$3=$ac_header_compiler"
+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi eval ac_res=$$3
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; } -fi
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
-} # ac_fn_objc_check_header_mongrel +} # ac_fn_objc_check_header_compile
# ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- @@ -3369,11 +3134,12 @@ fi ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; } -if eval ${$3+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+printf %s "checking for $2... " >&6; } +if eval test ${$3+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case <limits.h> declares $2. @@ -3381,16 +3147,9 @@ else #define $2 innocuous_$2
/* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $2 (); below.
- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
- <limits.h> exists even on freestanding compilers. */
-#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif
- which can conflict with char $2 (); below. */
+#include <limits.h> #undef $2
/* Override any GCC internal prototype to avoid an error. @@ -3408,61 +3167,102 @@ choke me #endif
int -main () +main (void) { return $2 (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : eval "$3=yes" -else +else $as_nop eval "$3=no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=$$3
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_func
-# ac_fn_c_check_member LINENO AGGR MEMBER VAR INCLUDES -# ---------------------------------------------------- -# Tries to find if the field MEMBER exists in type AGGR, after including -# INCLUDES, setting cache variable VAR accordingly. -ac_fn_c_check_member () +# ac_fn_c_try_cpp LINENO +# ---------------------- +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5
-$as_echo_n "checking for $2.$3... " >&6; } -if eval ${$4+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */ -$5 -int -main () -{ -static $2 ac_aggr; -if (ac_aggr.$3) -return 0;
- ;
- return 0;
- if { { ac_try="$ac_cpp conftest.$ac_ext"
+case "(($ac_try" in
- *"* | *`* | *\*) ac_try_echo=$ac_try;;
- *) ac_try_echo=$ac_try;;
+esac +eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" +printf "%s\n" "$ac_try_echo"; } >&5
- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
- ac_status=$?
- if test -s conftest.err; then
- grep -v '^ *+' conftest.err >conftest.er1
- cat conftest.er1 >&5
- mv -f conftest.er1 conftest.err
- fi
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- test $ac_status = 0; } > conftest.i && {
test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
test ! -s conftest.err
}
+then :
- ac_retval=0
+else $as_nop
- printf "%s\n" "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
- ac_retval=1
+fi
- eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
- as_fn_set_status $ac_retval
+} # ac_fn_c_try_cpp
+# ac_fn_c_check_member LINENO AGGR MEMBER VAR INCLUDES +# ---------------------------------------------------- +# Tries to find if the field MEMBER exists in type AGGR, after including +# INCLUDES, setting cache variable VAR accordingly. +ac_fn_c_check_member () +{
- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5
+printf %s "checking for $2.$3... " >&6; } +if eval test ${$4+y} +then :
- printf %s "(cached) " >&6
+else $as_nop
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */ +$5 +int +main (void) +{ +static $2 ac_aggr; +if (ac_aggr.$3) +return 0;
- ;
- return 0;
} _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : eval "$4=yes" -else +else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $5 int -main () +main (void) { static $2 ac_aggr; if (sizeof ac_aggr.$3) @@ -3471,18 +3271,19 @@ return 0; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : eval "$4=yes" -else +else $as_nop eval "$4=no" fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi eval ac_res=$$4
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_member @@ -3494,17 +3295,18 @@ $as_echo "$ac_res" >&6; } ac_fn_c_check_type () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
-$as_echo_n "checking for $2... " >&6; } -if eval ${$3+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+printf %s "checking for $2... " >&6; } +if eval test ${$3+y} +then :
- printf %s "(cached) " >&6
+else $as_nop eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int -main () +main (void) { if (sizeof ($2)) return 0; @@ -3512,12 +3314,13 @@ if (sizeof ($2)) return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int -main () +main (void) { if (sizeof (($2))) return 0; @@ -3525,29 +3328,50 @@ if (sizeof (($2))) return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then :
-else +else $as_nop eval "$3=yes" fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi eval ac_res=$$3
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
} # ac_fn_c_check_type +ac_configure_args_raw= +for ac_arg +do
- case $ac_arg in
- *'*)
- ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\''/g"` ;;
- esac
- as_fn_append ac_configure_args_raw " '$ac_arg'"
+done
+case $ac_configure_args_raw in
- *$as_nl*)
- ac_safe_unquote= ;;
- *)
- ac_unsafe_z='|&;<>()$`\"*?[ '' ' # This string ends in space, tab.
- ac_unsafe_a="$ac_unsafe_z#~"
- ac_safe_unquote="s/ '\([^$ac_unsafe_a][^$ac_unsafe_z]*\)'/ \1/g"
- ac_configure_args_raw=` printf "%s\n" "$ac_configure_args_raw" | sed "$ac_safe_unquote"`;;
+esac
cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake.
It was created by Wine $as_me 6.16, which was -generated by GNU Autoconf 2.69. Invocation command line was +generated by GNU Autoconf 2.71. Invocation command line was
- $ $0 $@
- $ $0$ac_configure_args_raw
_ACEOF exec 5>>config.log @@ -3580,8 +3404,12 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- $as_echo "PATH: $as_dir"
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac
- printf "%s\n" "PATH: $as_dir" done
IFS=$as_save_IFS
@@ -3616,7 +3444,7 @@ do | -silent | --silent | --silen | --sile | --sil) continue ;; *'*)
ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
esac case $ac_pass inac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
- as_fn_append ac_configure_args0 " '$ac_arg'" ;;
@@ -3651,11 +3479,13 @@ done # WARNING: Use ''' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$?
- # Sanitize IFS.
- IFS=" "" $as_nl" # Save into config.log some information that might help in debugging. { echo
- $as_echo "## ---------------- ##
- printf "%s\n" "## ---------------- ##
## Cache variables. ## ## ---------------- ##" echo @@ -3666,8 +3496,8 @@ trap 'exit_status=$? case $ac_val in #( *${as_nl}*) case $ac_var in #(
*_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
-$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
*_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
+printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( @@ -3691,7 +3521,7 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; ) echo
- $as_echo "## ----------------- ##
- printf "%s\n" "## ----------------- ##
## Output variables. ## ## ----------------- ##" echo @@ -3699,14 +3529,14 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; do eval ac_val=$$ac_var case $ac_val in
*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
*\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac
$as_echo "$ac_var='\''$ac_val'\''"
printf "%s\n" "$ac_var='\''$ac_val'\''"
done | sort echo
if test -n "$ac_subst_files"; then
$as_echo "## ------------------- ##
printf "%s\n" "## ------------------- ##
## File substitutions. ## ## ------------------- ##" echo @@ -3714,15 +3544,15 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; do eval ac_val=$$ac_var case $ac_val in
- *'''*) ac_val=`$as_echo "$ac_val" | sed "s/'''/'''\\\\''''''/g"`;;
- *'''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'''/'''\\\\''''''/g"`;; esac
- $as_echo "$ac_var='''$ac_val'''"
printf "%s\n" "$ac_var='''$ac_val'''" done | sort echo fi
if test -s confdefs.h; then
$as_echo "## ----------- ##
printf "%s\n" "## ----------- ##
## confdefs.h. ## ## ----------- ##" echo @@ -3730,8 +3560,8 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; echo fi test "$ac_signal" != 0 &&
$as_echo "$as_me: caught signal $ac_signal"
- $as_echo "$as_me: exit $exit_status"
printf "%s\n" "$as_me: caught signal $ac_signal"
- printf "%s\n" "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
@@ -3745,63 +3575,48 @@ ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h
-$as_echo "/* confdefs.h */" > confdefs.h +printf "%s\n" "/* confdefs.h */" > confdefs.h
# Predefined preprocessor variables.
-cat >>confdefs.h <<_ACEOF -#define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF +printf "%s\n" "#define PACKAGE_NAME "$PACKAGE_NAME"" >>confdefs.h
-cat >>confdefs.h <<_ACEOF -#define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF +printf "%s\n" "#define PACKAGE_TARNAME "$PACKAGE_TARNAME"" >>confdefs.h
-cat >>confdefs.h <<_ACEOF -#define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF +printf "%s\n" "#define PACKAGE_VERSION "$PACKAGE_VERSION"" >>confdefs.h
-cat >>confdefs.h <<_ACEOF -#define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF +printf "%s\n" "#define PACKAGE_STRING "$PACKAGE_STRING"" >>confdefs.h
-cat >>confdefs.h <<_ACEOF -#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF +printf "%s\n" "#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"" >>confdefs.h
-cat >>confdefs.h <<_ACEOF -#define PACKAGE_URL "$PACKAGE_URL" -_ACEOF +printf "%s\n" "#define PACKAGE_URL "$PACKAGE_URL"" >>confdefs.h
# Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. -ac_site_file1=NONE -ac_site_file2=NONE if test -n "$CONFIG_SITE"; then
- # We do not want a PATH search for config.site.
- case $CONFIG_SITE in #((
- -*) ac_site_file1=./$CONFIG_SITE;;
- */*) ac_site_file1=$CONFIG_SITE;;
- *) ac_site_file1=./$CONFIG_SITE;;
- esac
- ac_site_files="$CONFIG_SITE"
elif test "x$prefix" != xNONE; then
- ac_site_file1=$prefix/share/config.site
- ac_site_file2=$prefix/etc/config.site
- ac_site_files="$prefix/share/config.site $prefix/etc/config.site"
else
- ac_site_file1=$ac_default_prefix/share/config.site
- ac_site_file2=$ac_default_prefix/etc/config.site
- ac_site_files="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
fi -for ac_site_file in "$ac_site_file1" "$ac_site_file2"
+for ac_site_file in $ac_site_files do
- test "x$ac_site_file" = xNONE && continue
- if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
-$as_echo "$as_me: loading site script $ac_site_file" >&6;}
- case $ac_site_file in #(
- */*) :
;; #(
- *) :
- ac_site_file=./$ac_site_file ;;
+esac
- if test -f "$ac_site_file" && test -r "$ac_site_file"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
+printf "%s\n" "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \
|| { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-$as_echo "$as_me: error: in `$ac_pwd':" >&2;}
|| { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See `config.log' for more details" "$LINENO" 5; } fi @@ -3811,542 +3626,1217 @@ if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
-$as_echo "$as_me: loading cache $cache_file" >&6;}
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
+printf "%s\n" "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\/]* | ?:[\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else
- { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
-$as_echo "$as_me: creating cache $cache_file" >&6;}
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
+printf "%s\n" "$as_me: creating cache $cache_file" >&6;}
$cache_file
fi
-# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in $ac_precious_vars; do
- eval ac_old_set=$ac_cv_env_${ac_var}_set
- eval ac_new_set=$ac_env_${ac_var}_set
- eval ac_old_val=$ac_cv_env_${ac_var}_value
- eval ac_new_val=$ac_env_${ac_var}_value
- case $ac_old_set,$ac_new_set in
- set,)
{ $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
-$as_echo "$as_me: error: `$ac_var' was set to `$ac_old_val' in the previous run" >&2;}
ac_cache_corrupted=: ;;
- ,set)
{ $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
-$as_echo "$as_me: error: `$ac_var' was not set in the previous run" >&2;}
ac_cache_corrupted=: ;;
- ,);;
- *)
if test "x$ac_old_val" != "x$ac_new_val"; then
- # differences in whitespace do not lead to failure.
- ac_old_val_w=`echo x $ac_old_val`
- ac_new_val_w=`echo x $ac_new_val`
- if test "$ac_old_val_w" != "$ac_new_val_w"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
-$as_echo "$as_me: error: `$ac_var' has changed since the previous run:" >&2;}
ac_cache_corrupted=:
- else
{ $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
-$as_echo "$as_me: warning: ignoring whitespace changes in `$ac_var' since the previous run:" >&2;}
eval $ac_var=\$ac_old_val
- fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: former value: `$ac_old_val'" >&5
-$as_echo "$as_me: former value: `$ac_old_val'" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: current value: `$ac_new_val'" >&5
-$as_echo "$as_me: current value: `$ac_new_val'" >&2;}
fi;;
- esac
- # Pass precious variables to config.status.
- if test "$ac_new_set" = set; then
- case $ac_new_val in
- *'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\''/g"` ;;
- *) ac_arg=$ac_var=$ac_new_val ;;
- esac
- case " $ac_configure_args " in
*" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
*) as_fn_append ac_configure_args " '$ac_arg'" ;;
- esac
- fi
-done -if $ac_cache_corrupted; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5
-$as_echo "$as_me: error: in `$ac_pwd':" >&2;}
- { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
-$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
- as_fn_error $? "run `make distclean' and/or `rm $cache_file' and start over" "$LINENO" 5
-fi -## -------------------- ## -## Main body of script. ## -## -------------------- ## +# Test code for whether the C compiler supports C89 (global declarations) +ac_c_conftest_c89_globals=' +/* Does the compiler advertise C89 conformance?
- Do not test the value of __STDC__, because some compilers set it to 0
- while being otherwise adequately conformant. */
+#if !defined __STDC__ +# error "Compiler does not advertise C89 conformance" +#endif
-ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu +#include <stddef.h> +#include <stdarg.h> +struct stat; +/* Most of the following tests are stolen from RCS 5.7 src/conf.sh. */ +struct buf { int x; }; +struct buf * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i)
char **p;
int i;
+{
- return p[i];
+} +static char *f (char * (*g) (char **, int), char **p, ...) +{
- char *s;
- va_list v;
- va_start (v,p);
- s = g (p, va_arg (v,int));
- va_end (v);
- return s;
+}
+/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
- function prototypes and stuff, but not \xHH hex character constants.
- These do not provoke an error unfortunately, instead are silently treated
- as an "x". The following induces an error, until -std is added to get
- proper ANSI mode. Curiously \x00 != x always comes out true, for an
- array size at least. It is necessary to write \x00 == 0 to get something
- that is true only with -std. */
+int osf4_cc_array ['''\x00''' == 0 ? 1 : -1];
+/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
- inside strings and character constants. */
+#define FOO(x) '''x''' +int xlc6_cc_array[FOO(a) == '''x''' ? 1 : -1];
-ac_config_headers="$ac_config_headers include/config.h" +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, int *(*)(struct buf *, struct stat *, int),
int, int);'
-ac_aux_dir= -for ac_dir in tools "$srcdir"/tools; do
- if test -f "$ac_dir/install-sh"; then
- ac_aux_dir=$ac_dir
- ac_install_sh="$ac_aux_dir/install-sh -c"
- break
- elif test -f "$ac_dir/install.sh"; then
- ac_aux_dir=$ac_dir
- ac_install_sh="$ac_aux_dir/install.sh -c"
- break
- elif test -f "$ac_dir/shtool"; then
- ac_aux_dir=$ac_dir
- ac_install_sh="$ac_aux_dir/shtool install -c"
- break
- fi
-done -if test -z "$ac_aux_dir"; then
- as_fn_error $? "cannot find install-sh, install.sh, or shtool in tools "$srcdir"/tools" "$LINENO" 5
-fi +# Test code for whether the C compiler supports C89 (body of main). +ac_c_conftest_c89_main=' +ok |= (argc == 0 || f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]); +'
-# These three variables are undocumented and unsupported, -# and are intended to be withdrawn in a future Autoconf release. -# They can cause serious problems if a builder's source tree is in a directory -# whose full name contains unusual characters. -ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. -ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. -ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. +# Test code for whether the C compiler supports C99 (global declarations) +ac_c_conftest_c99_globals=' +// Does the compiler advertise C99 conformance? +#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 199901L +# error "Compiler does not advertise C99 conformance" +#endif
+#include <stdbool.h> +extern int puts (const char *); +extern int printf (const char *, ...); +extern int dprintf (int, const char *, ...); +extern void *malloc (size_t);
+// Check varargs macros. These examples are taken from C99 6.10.3.5. +// dprintf is used instead of fprintf to avoid needing to declare +// FILE and stderr. +#define debug(...) dprintf (2, __VA_ARGS__) +#define showlist(...) puts (#__VA_ARGS__) +#define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) +static void +test_varargs_macros (void) +{
- int x = 1234;
- int y = 5678;
- debug ("Flag");
- debug ("X = %d\n", x);
- showlist (The first, second, and third items.);
- report (x>y, "x is %d but y is %d", x, y);
+}
+// Check long long types. +#define BIG64 18446744073709551615ull +#define BIG32 4294967295ul +#define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) +#if !BIG_OK
- #error "your preprocessor is broken"
+#endif +#if BIG_OK +#else
- #error "your preprocessor is broken"
+#endif +static long long int bignum = -9223372036854775807LL; +static unsigned long long int ubignum = BIG64;
-libwine_version="1.0" +struct incomplete_array +{
- int datasize;
- double data[];
+};
+struct named_init {
- int number;
- const wchar_t *name;
- double average;
+};
+typedef const char *ccp;
-# Check whether --enable-win16 was given. -if test "${enable_win16+set}" = set; then :
- enableval=$enable_win16;
-fi +static inline int +test_restrict (ccp restrict text) +{
- // See if C++-style comments work.
- // Iterate through items via the restricted pointer.
- // Also check for declarations in for loops.
- for (unsigned int i = 0; *(text+i) != '''\0'''; ++i)
- continue;
- return 0;
+}
-# Check whether --enable-win64 was given. -if test "${enable_win64+set}" = set; then :
- enableval=$enable_win64;
-fi +// Check varargs and va_copy. +static bool +test_varargs (const char *format, ...) +{
- va_list args;
- va_start (args, format);
- va_list args_copy;
- va_copy (args_copy, args);
-# Check whether --enable-tests was given. -if test "${enable_tests+set}" = set; then :
- enableval=$enable_tests;
-fi
- const char *str = "";
- int number = 0;
- float fnumber = 0;
-# Check whether --enable-build-id was given. -if test "${enable_build_id+set}" = set; then :
- enableval=$enable_build_id;
-fi
- while (*format)
- {
switch (*format++)
- {
- case '''s''': // string
str = va_arg (args_copy, const char *);
break;
- case '''d''': // int
number = va_arg (args_copy, int);
break;
- case '''f''': // float
fnumber = va_arg (args_copy, double);
break;
- default:
break;
- }
- }
- va_end (args_copy);
- va_end (args);
-# Check whether --enable-maintainer-mode was given. -if test "${enable_maintainer_mode+set}" = set; then :
- enableval=$enable_maintainer_mode;
-fi
- return *str && number && fnumber;
+} +'
-# Check whether --enable-silent-rules was given. -if test "${enable_silent_rules+set}" = set; then :
- enableval=$enable_silent_rules;
-fi +# Test code for whether the C compiler supports C99 (body of main). +ac_c_conftest_c99_main='
- // Check bool.
- _Bool success = false;
- success |= (argc != 0);
- // Check restrict.
- if (test_restrict ("String literal") == 0)
- success = true;
- char *restrict newvar = "Another string";
- // Check varargs.
- success &= test_varargs ("s, d''' f .", "string", 65, 34.234);
- test_varargs_macros ();
- // Check flexible array members.
- struct incomplete_array *ia =
- malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10));
- ia->datasize = 10;
- for (int i = 0; i < ia->datasize; ++i)
- ia->data[i] = i * 1.234;
- // Check named initializers.
- struct named_init ni = {
- .number = 34,
- .name = L"Test wide string",
- .average = 543.34343,
- };
- ni.number = 58;
- int dynamic_array[ni.number];
- dynamic_array[0] = argv[0][0];
- dynamic_array[ni.number - 1] = 543;
- // work around unused variable warnings
- ok |= (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == '''x'''
|| dynamic_array[ni.number - 1] != 543);
+'
-# Check whether --enable-werror was given. -if test "${enable_werror+set}" = set; then :
- enableval=$enable_werror;
-fi +# Test code for whether the C compiler supports C11 (global declarations) +ac_c_conftest_c11_globals=' +// Does the compiler advertise C11 conformance? +#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L +# error "Compiler does not advertise C11 conformance" +#endif
+// Check _Alignas. +char _Alignas (double) aligned_as_double; +char _Alignas (0) no_special_alignment; +extern char aligned_as_int; +char _Alignas (0) _Alignas (int) aligned_as_int;
+// Check _Alignof. +enum +{
- int_alignment = _Alignof (int),
- int_array_alignment = _Alignof (int[100]),
- char_alignment = _Alignof (char)
+}; +_Static_assert (0 < -_Alignof (int), "_Alignof is signed");
-# Check whether --with-alsa was given. -if test "${with_alsa+set}" = set; then :
- withval=$with_alsa;
-fi +// Check _Noreturn. +int _Noreturn does_not_return (void) { for (;;) continue; }
+// Check _Static_assert. +struct test_static_assert +{
- int x;
- _Static_assert (sizeof (int) <= sizeof (long int),
"_Static_assert does not work in struct");
- long int y;
+};
+// Check UTF-8 literals. +#define u8 syntax error! +char const utf8_literal[] = u8"happens to be ASCII" "another string";
+// Check duplicate typedefs. +typedef long *long_ptr; +typedef long int *long_ptr; +typedef long_ptr long_ptr;
+// Anonymous structures and unions -- taken from C11 6.7.2.1 Example 1. +struct anonymous +{
- union {
- struct { int i; int j; };
- struct { int k; long int l; } w;
- };
- int m;
+} v1; +'
-# Check whether --with-capi was given. -if test "${with_capi+set}" = set; then :
- withval=$with_capi;
-fi +# Test code for whether the C compiler supports C11 (body of main). +ac_c_conftest_c11_main='
- _Static_assert ((offsetof (struct anonymous, i)
== offsetof (struct anonymous, w.k)),
"Anonymous union alignment botch");
- v1.i = 2;
- v1.w.k = 5;
- ok |= v1.i != 5;
+'
+# Test code for whether the C compiler supports C11 (complete). +ac_c_conftest_c11_program="${ac_c_conftest_c89_globals} +${ac_c_conftest_c99_globals} +${ac_c_conftest_c11_globals}
-# Check whether --with-cms was given. -if test "${with_cms+set}" = set; then :
- withval=$with_cms;
-fi +int +main (int argc, char **argv) +{
- int ok = 0;
- ${ac_c_conftest_c89_main}
- ${ac_c_conftest_c99_main}
- ${ac_c_conftest_c11_main}
- return ok;
+} +"
+# Test code for whether the C compiler supports C99 (complete). +ac_c_conftest_c99_program="${ac_c_conftest_c89_globals} +${ac_c_conftest_c99_globals}
-# Check whether --with-coreaudio was given. -if test "${with_coreaudio+set}" = set; then :
- withval=$with_coreaudio; if test "x$withval" = "xno"; then ac_cv_header_CoreAudio_CoreAudio_h=no; fi
-fi +int +main (int argc, char **argv) +{
- int ok = 0;
- ${ac_c_conftest_c89_main}
- ${ac_c_conftest_c99_main}
- return ok;
+} +"
+# Test code for whether the C compiler supports C89 (complete). +ac_c_conftest_c89_program="${ac_c_conftest_c89_globals}
-# Check whether --with-cups was given. -if test "${with_cups+set}" = set; then :
- withval=$with_cups;
-fi +int +main (int argc, char **argv) +{
- int ok = 0;
- ${ac_c_conftest_c89_main}
- return ok;
+} +"
+# Test code for whether the C++ compiler supports C++98 (global declarations) +ac_cxx_conftest_cxx98_globals=' +// Does the compiler advertise C++98 conformance? +#if !defined __cplusplus || __cplusplus < 199711L +# error "Compiler does not advertise C++98 conformance" +#endif
-# Check whether --with-dbus was given. -if test "${with_dbus+set}" = set; then :
- withval=$with_dbus;
-fi +// These inclusions are to reject old compilers that +// lack the unsuffixed header files. +#include <cstdlib> +#include <exception>
+// <cassert> and <cstring> are *not* freestanding headers in C++98. +extern void assert (int); +namespace std {
- extern int strcmp (const char *, const char *);
+}
-# Check whether --with-faudio was given. -if test "${with_faudio+set}" = set; then :
- withval=$with_faudio;
-fi +// Namespaces, exceptions, and templates were all added after "C++ 2.0". +using std::exception; +using std::strcmp;
+namespace {
-# Check whether --with-float-abi was given. -if test "${with_float_abi+set}" = set; then :
- withval=$with_float_abi;
-fi +void test_exception_syntax() +{
- try {
- throw "test";
- } catch (const char *s) {
- // Extra parentheses suppress a warning when building autoconf itself,
- // due to lint rules shared with more typical C programs.
- assert (!(strcmp) (s, "test"));
- }
+}
+template <typename T> struct test_template +{
- T const val;
- explicit test_template(T t) : val(t) {}
- template <typename U> T add(U u) { return static_cast<T>(u) + val; }
+};
-# Check whether --with-fontconfig was given. -if test "${with_fontconfig+set}" = set; then :
- withval=$with_fontconfig;
-fi +} // anonymous namespace +'
+# Test code for whether the C++ compiler supports C++98 (body of main) +ac_cxx_conftest_cxx98_main='
- assert (argc);
- assert (! argv[0]);
+{
- test_exception_syntax ();
- test_template<double> tt (2.0);
- assert (tt.add (4) == 6.0);
- assert (true && !false);
+} +'
-# Check whether --with-freetype was given. -if test "${with_freetype+set}" = set; then :
- withval=$with_freetype;
-fi +# Test code for whether the C++ compiler supports C++11 (global declarations) +ac_cxx_conftest_cxx11_globals=' +// Does the compiler advertise C++ 2011 conformance? +#if !defined __cplusplus || __cplusplus < 201103L +# error "Compiler does not advertise C++11 conformance" +#endif
+namespace cxx11test +{
- constexpr int get_val() { return 20; }
-# Check whether --with-gettext was given. -if test "${with_gettext+set}" = set; then :
- withval=$with_gettext;
-fi
struct testinit
{
int i;
double d;
};
class delegate
{
public:
delegate(int n) : n(n) {}
delegate(): delegate(2354) {}
-# Check whether --with-gettextpo was given. -if test "${with_gettextpo+set}" = set; then :
- withval=$with_gettextpo; if test "x$withval" = "xno"; then ac_cv_header_gettext_po_h=no; fi
-fi
- virtual int getval() { return this->n; };
- protected:
- int n;
- };
- class overridden : public delegate
- {
- public:
- overridden(int n): delegate(n) {}
- virtual int getval() override final { return this->n * 2; }
- };
- class nocopy
- {
- public:
- nocopy(int i): i(i) {}
- nocopy() = default;
- nocopy(const nocopy&) = delete;
- nocopy & operator=(const nocopy&) = delete;
- private:
- int i;
- };
- // for testing lambda expressions
- template <typename Ret, typename Fn> Ret eval(Fn f, Ret v)
- {
- return f(v);
- }
- // for testing variadic templates and trailing return types
- template <typename V> auto sum(V first) -> V
- {
- return first;
- }
- template <typename V, typename... Args> auto sum(V first, Args... rest) -> V
- {
- return first + sum(rest...);
- }
+} +'
+# Test code for whether the C++ compiler supports C++11 (body of main) +ac_cxx_conftest_cxx11_main=' +{
- // Test auto and decltype
- auto a1 = 6538;
- auto a2 = 48573953.4;
- auto a3 = "String literal";
- int total = 0;
- for (auto i = a3; *i; ++i) { total += *i; }
- decltype(a2) a4 = 34895.034;
+} +{
- // Test constexpr
- short sa[cxx11test::get_val()] = { 0 };
+} +{
- // Test initializer lists
- cxx11test::testinit il = { 4323, 435234.23544 };
+} +{
- // Test range-based for
- int array[] = {9, 7, 13, 15, 4, 18, 12, 10, 5, 3,
14, 19, 17, 8, 6, 20, 16, 2, 11, 1};
- for (auto &x : array) { x += 23; }
+} +{
- // Test lambda expressions
- using cxx11test::eval;
- assert (eval ([](int x) { return x*2; }, 21) == 42);
- double d = 2.0;
- assert (eval ([&](double x) { return d += x; }, 3.0) == 5.0);
- assert (d == 5.0);
- assert (eval ([=](double x) mutable { return d += x; }, 4.0) == 9.0);
- assert (d == 5.0);
+} +{
- // Test use of variadic templates
- using cxx11test::sum;
- auto a = sum(1);
- auto b = sum(1, 2);
- auto c = sum(1.0, 2.0, 3.0);
+} +{
- // Test constructor delegation
- cxx11test::delegate d1;
- cxx11test::delegate d2();
- cxx11test::delegate d3(45);
+} +{
- // Test override and final
- cxx11test::overridden o1(55464);
+} +{
- // Test nullptr
- char *c = nullptr;
+} +{
- // Test template brackets
- test_template<::test_template<int>> v(test_template<int>(12));
+} +{
- // Unicode literals
- char const *utf8 = u8"UTF-8 string \u2500";
- char16_t const *utf16 = u"UTF-8 string \u2500";
- char32_t const *utf32 = U"UTF-32 string \u2500";
+} +'
+# Test code for whether the C compiler supports C++11 (complete). +ac_cxx_conftest_cxx11_program="${ac_cxx_conftest_cxx98_globals} +${ac_cxx_conftest_cxx11_globals}
+int +main (int argc, char **argv) +{
- int ok = 0;
- ${ac_cxx_conftest_cxx98_main}
- ${ac_cxx_conftest_cxx11_main}
- return ok;
+} +"
+# Test code for whether the C compiler supports C++98 (complete). +ac_cxx_conftest_cxx98_program="${ac_cxx_conftest_cxx98_globals} +int +main (int argc, char **argv) +{
- int ok = 0;
- ${ac_cxx_conftest_cxx98_main}
- return ok;
+} +"
+as_fn_append ac_header_c_list " stdio.h stdio_h HAVE_STDIO_H" +as_fn_append ac_header_c_list " stdlib.h stdlib_h HAVE_STDLIB_H" +as_fn_append ac_header_c_list " string.h string_h HAVE_STRING_H" +as_fn_append ac_header_c_list " inttypes.h inttypes_h HAVE_INTTYPES_H" +as_fn_append ac_header_c_list " stdint.h stdint_h HAVE_STDINT_H" +as_fn_append ac_header_c_list " strings.h strings_h HAVE_STRINGS_H" +as_fn_append ac_header_c_list " sys/stat.h sys_stat_h HAVE_SYS_STAT_H" +as_fn_append ac_header_c_list " sys/types.h sys_types_h HAVE_SYS_TYPES_H" +as_fn_append ac_header_c_list " unistd.h unistd_h HAVE_UNISTD_H"
+# Auxiliary files required by this configure script. +ac_aux_files="config.guess config.sub"
+# Locations in which to look for auxiliary files. +ac_aux_dir_candidates="${srcdir}/tools"
+# Search for a directory containing all of the required auxiliary files, +# $ac_aux_files, from the $PATH-style list $ac_aux_dir_candidates. +# If we don't find one directory that contains all the files we need, +# we report the set of missing files from the *first* directory in +# $ac_aux_dir_candidates and give up. +ac_missing_aux_files="" +ac_first_candidate=: +printf "%s\n" "$as_me:${as_lineno-$LINENO}: looking for aux files: $ac_aux_files" >&5 +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false +for as_dir in $ac_aux_dir_candidates +do
- IFS=$as_save_IFS
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac
- as_found=:
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: trying $as_dir" >&5
- ac_aux_dir_found=yes
- ac_install_sh=
- for ac_aux in $ac_aux_files
- do
- # As a special case, if "install-sh" is required, that requirement
- # can be satisfied by any of "install-sh", "install.sh", or "shtool",
- # and $ac_install_sh is set appropriately for whichever one is found.
- if test x"$ac_aux" = x"install-sh"
- then
if test -f "${as_dir}install-sh"; then
printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install-sh found" >&5
ac_install_sh="${as_dir}install-sh -c"
elif test -f "${as_dir}install.sh"; then
printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install.sh found" >&5
ac_install_sh="${as_dir}install.sh -c"
elif test -f "${as_dir}shtool"; then
printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}shtool found" >&5
ac_install_sh="${as_dir}shtool install -c"
else
ac_aux_dir_found=no
if $ac_first_candidate; then
ac_missing_aux_files="${ac_missing_aux_files} install-sh"
else
break
fi
fi
- else
if test -f "${as_dir}${ac_aux}"; then
printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}${ac_aux} found" >&5
else
ac_aux_dir_found=no
if $ac_first_candidate; then
ac_missing_aux_files="${ac_missing_aux_files} ${ac_aux}"
else
break
fi
fi
- fi
- done
- if test "$ac_aux_dir_found" = yes; then
- ac_aux_dir="$as_dir"
- break
- fi
- ac_first_candidate=false
- as_found=false
+done +IFS=$as_save_IFS +if $as_found +then :
+else $as_nop
- as_fn_error $? "cannot find required auxiliary files:$ac_missing_aux_files" "$LINENO" 5
+fi
+# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +if test -f "${ac_aux_dir}config.guess"; then
- ac_config_guess="$SHELL ${ac_aux_dir}config.guess"
+fi +if test -f "${ac_aux_dir}config.sub"; then
- ac_config_sub="$SHELL ${ac_aux_dir}config.sub"
+fi +if test -f "$ac_aux_dir/configure"; then
- ac_configure="$SHELL ${ac_aux_dir}configure"
+fi
+# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in $ac_precious_vars; do
- eval ac_old_set=$ac_cv_env_${ac_var}_set
- eval ac_new_set=$ac_env_${ac_var}_set
- eval ac_old_val=$ac_cv_env_${ac_var}_value
- eval ac_new_val=$ac_env_${ac_var}_value
- case $ac_old_set,$ac_new_set in
- set,)
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
+printf "%s\n" "$as_me: error: `$ac_var' was set to `$ac_old_val' in the previous run" >&2;}
ac_cache_corrupted=: ;;
- ,set)
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
+printf "%s\n" "$as_me: error: `$ac_var' was not set in the previous run" >&2;}
ac_cache_corrupted=: ;;
- ,);;
- *)
if test "x$ac_old_val" != "x$ac_new_val"; then
- # differences in whitespace do not lead to failure.
- ac_old_val_w=`echo x $ac_old_val`
- ac_new_val_w=`echo x $ac_new_val`
- if test "$ac_old_val_w" != "$ac_new_val_w"; then
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
+printf "%s\n" "$as_me: error: `$ac_var' has changed since the previous run:" >&2;}
ac_cache_corrupted=:
- else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
+printf "%s\n" "$as_me: warning: ignoring whitespace changes in `$ac_var' since the previous run:" >&2;}
eval $ac_var=\$ac_old_val
- fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: former value: `$ac_old_val'" >&5
+printf "%s\n" "$as_me: former value: `$ac_old_val'" >&2;}
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: current value: `$ac_new_val'" >&5
+printf "%s\n" "$as_me: current value: `$ac_new_val'" >&2;}
fi;;
- esac
- # Pass precious variables to config.status.
- if test "$ac_new_set" = set; then
- case $ac_new_val in
- *'*) ac_arg=$ac_var=`printf "%s\n" "$ac_new_val" | sed "s/'/'\\\\''/g"` ;;
- *) ac_arg=$ac_var=$ac_new_val ;;
- esac
- case " $ac_configure_args " in
*" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
*) as_fn_append ac_configure_args " '$ac_arg'" ;;
- esac
- fi
+done +if $ac_cache_corrupted; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5
+printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;}
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
+printf "%s\n" "$as_me: error: changes in the environment can compromise the build" >&2;}
- as_fn_error $? "run `${MAKE-make} distclean' and/or `rm $cache_file'
and start over" "$LINENO" 5
+fi +## -------------------- ## +## Main body of script. ## +## -------------------- ##
+ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu
+ac_config_headers="$ac_config_headers include/config.h"
+libwine_version="1.0"
+# Check whether --enable-win16 was given. +if test ${enable_win16+y} +then :
- enableval=$enable_win16;
+fi
+# Check whether --enable-win64 was given. +if test ${enable_win64+y} +then :
- enableval=$enable_win64;
+fi
+# Check whether --enable-tests was given. +if test ${enable_tests+y} +then :
- enableval=$enable_tests;
+fi
+# Check whether --enable-build-id was given. +if test ${enable_build_id+y} +then :
- enableval=$enable_build_id;
+fi
+# Check whether --enable-maintainer-mode was given. +if test ${enable_maintainer_mode+y} +then :
- enableval=$enable_maintainer_mode;
+fi
+# Check whether --enable-silent-rules was given. +if test ${enable_silent_rules+y} +then :
- enableval=$enable_silent_rules;
+fi
+# Check whether --enable-werror was given. +if test ${enable_werror+y} +then :
- enableval=$enable_werror;
+fi
+# Check whether --with-alsa was given. +if test ${with_alsa+y} +then :
- withval=$with_alsa;
+fi
+# Check whether --with-capi was given. +if test ${with_capi+y} +then :
- withval=$with_capi;
+fi
+# Check whether --with-cms was given. +if test ${with_cms+y} +then :
- withval=$with_cms;
+fi
+# Check whether --with-coreaudio was given. +if test ${with_coreaudio+y} +then :
- withval=$with_coreaudio; if test "x$withval" = "xno"; then ac_cv_header_CoreAudio_CoreAudio_h=no; fi
+fi
+# Check whether --with-cups was given. +if test ${with_cups+y} +then :
- withval=$with_cups;
+fi
+# Check whether --with-dbus was given. +if test ${with_dbus+y} +then :
- withval=$with_dbus;
+fi
+# Check whether --with-faudio was given. +if test ${with_faudio+y} +then :
- withval=$with_faudio;
+fi
+# Check whether --with-float-abi was given. +if test ${with_float_abi+y} +then :
- withval=$with_float_abi;
+fi
+# Check whether --with-fontconfig was given. +if test ${with_fontconfig+y} +then :
- withval=$with_fontconfig;
+fi
+# Check whether --with-freetype was given. +if test ${with_freetype+y} +then :
- withval=$with_freetype;
+fi
+# Check whether --with-gettext was given. +if test ${with_gettext+y} +then :
- withval=$with_gettext;
+fi
+# Check whether --with-gettextpo was given. +if test ${with_gettextpo+y} +then :
- withval=$with_gettextpo; if test "x$withval" = "xno"; then ac_cv_header_gettext_po_h=no; fi
+fi
# Check whether --with-gphoto was given. -if test "${with_gphoto+set}" = set; then : +if test ${with_gphoto+y} +then : withval=$with_gphoto; fi
# Check whether --with-gnutls was given. -if test "${with_gnutls+set}" = set; then : +if test ${with_gnutls+y} +then : withval=$with_gnutls; fi
# Check whether --with-gsm was given. -if test "${with_gsm+set}" = set; then : +if test ${with_gsm+y} +then : withval=$with_gsm; if test "x$withval" = "xno"; then ac_cv_header_gsm_h=no; ac_cv_header_gsm_gsm_h=no; fi fi
# Check whether --with-gssapi was given. -if test "${with_gssapi+set}" = set; then : +if test ${with_gssapi+y} +then : withval=$with_gssapi; fi
# Check whether --with-gstreamer was given. -if test "${with_gstreamer+set}" = set; then : +if test ${with_gstreamer+y} +then : withval=$with_gstreamer; fi
# Check whether --with-hal was given. -if test "${with_hal+set}" = set; then : +if test ${with_hal+y} +then : withval=$with_hal; fi
# Check whether --with-inotify was given. -if test "${with_inotify+set}" = set; then : +if test ${with_inotify+y} +then : withval=$with_inotify; fi
# Check whether --with-jpeg was given. -if test "${with_jpeg+set}" = set; then : +if test ${with_jpeg+y} +then : withval=$with_jpeg; fi
# Check whether --with-jxrlib was given. -if test "${with_jxrlib+set}" = set; then : +if test ${with_jxrlib+y} +then : withval=$with_jxrlib; fi
# Check whether --with-krb5 was given. -if test "${with_krb5+set}" = set; then : +if test ${with_krb5+y} +then : withval=$with_krb5; fi
# Check whether --with-ldap was given. -if test "${with_ldap+set}" = set; then : +if test ${with_ldap+y} +then : withval=$with_ldap; if test "x$withval" = "xno"; then ac_cv_header_ldap_h=no; ac_cv_header_lber_h=no; fi fi
# Check whether --with-mingw was given. -if test "${with_mingw+set}" = set; then : +if test ${with_mingw+y} +then : withval=$with_mingw; fi
# Check whether --with-mpg123 was given. -if test "${with_mpg123+set}" = set; then : +if test ${with_mpg123+y} +then : withval=$with_mpg123; fi
# Check whether --with-netapi was given. -if test "${with_netapi+set}" = set; then : +if test ${with_netapi+y} +then : withval=$with_netapi; fi
# Check whether --with-openal was given. -if test "${with_openal+set}" = set; then : +if test ${with_openal+y} +then : withval=$with_openal; if test "x$withval" = "xno"; then ac_cv_header_AL_al_h=no; ac_cv_header_OpenAL_al_h=no; fi fi
# Check whether --with-opencl was given. -if test "${with_opencl+set}" = set; then : +if test ${with_opencl+y} +then : withval=$with_opencl; if test "x$withval" = "xno"; then ac_cv_header_CL_cl_h=no; ac_cv_header_OpenCL_opencl_h=no; fi fi
# Check whether --with-opengl was given. -if test "${with_opengl+set}" = set; then : +if test ${with_opengl+y} +then : withval=$with_opengl; fi
# Check whether --with-osmesa was given. -if test "${with_osmesa+set}" = set; then : +if test ${with_osmesa+y} +then : withval=$with_osmesa; fi
# Check whether --with-oss was given. -if test "${with_oss+set}" = set; then : +if test ${with_oss+y} +then : withval=$with_oss; fi
# Check whether --with-pcap was given. -if test "${with_pcap+set}" = set; then : +if test ${with_pcap+y} +then : withval=$with_pcap; if test "x$withval" = "xno"; then ac_cv_header_pcap_pcap_h=no; fi fi
# Check whether --with-png was given. -if test "${with_png+set}" = set; then : +if test ${with_png+y} +then : withval=$with_png; fi
# Check whether --with-pthread was given. -if test "${with_pthread+set}" = set; then : +if test ${with_pthread+y} +then : withval=$with_pthread; if test "x$withval" = "xno"; then ac_cv_header_pthread_h=no; fi fi
# Check whether --with-pulse was given. -if test "${with_pulse+set}" = set; then : +if test ${with_pulse+y} +then : withval=$with_pulse; fi
# Check whether --with-quicktime was given. -if test "${with_quicktime+set}" = set; then : +if test ${with_quicktime+y} +then : withval=$with_quicktime; fi
# Check whether --with-sane was given. -if test "${with_sane+set}" = set; then : +if test ${with_sane+y} +then : withval=$with_sane; fi
# Check whether --with-sdl was given. -if test "${with_sdl+set}" = set; then : +if test ${with_sdl+y} +then : withval=$with_sdl; fi
# Check whether --with-tiff was given. -if test "${with_tiff+set}" = set; then : +if test ${with_tiff+y} +then : withval=$with_tiff; fi
# Check whether --with-udev was given. -if test "${with_udev+set}" = set; then : +if test ${with_udev+y} +then : withval=$with_udev; fi
# Check whether --with-unwind was given. -if test "${with_unwind+set}" = set; then : +if test ${with_unwind+y} +then : withval=$with_unwind; fi
# Check whether --with-usb was given. -if test "${with_usb+set}" = set; then : +if test ${with_usb+y} +then : withval=$with_usb; fi
# Check whether --with-v4l2 was given. -if test "${with_v4l2+set}" = set; then : +if test ${with_v4l2+y} +then : withval=$with_v4l2; fi
# Check whether --with-vkd3d was given. -if test "${with_vkd3d+set}" = set; then : +if test ${with_vkd3d+y} +then : withval=$with_vkd3d; fi
# Check whether --with-vulkan was given. -if test "${with_vulkan+set}" = set; then : +if test ${with_vulkan+y} +then : withval=$with_vulkan; fi
# Check whether --with-xcomposite was given. -if test "${with_xcomposite+set}" = set; then : +if test ${with_xcomposite+y} +then : withval=$with_xcomposite; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xcomposite_h=no; fi fi
# Check whether --with-xcursor was given. -if test "${with_xcursor+set}" = set; then : +if test ${with_xcursor+y} +then : withval=$with_xcursor; if test "x$withval" = "xno"; then ac_cv_header_X11_Xcursor_Xcursor_h=no; fi fi
# Check whether --with-xfixes was given. -if test "${with_xfixes+set}" = set; then : +if test ${with_xfixes+y} +then : withval=$with_xfixes; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xfixes_h=no; fi fi
# Check whether --with-xinerama was given. -if test "${with_xinerama+set}" = set; then : +if test ${with_xinerama+y} +then : withval=$with_xinerama; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xinerama_h=no; fi fi
# Check whether --with-xinput was given. -if test "${with_xinput+set}" = set; then : +if test ${with_xinput+y} +then : withval=$with_xinput; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XInput_h=no; fi fi
# Check whether --with-xinput2 was given. -if test "${with_xinput2+set}" = set; then : +if test ${with_xinput2+y} +then : withval=$with_xinput2; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XInput2_h=no; fi fi
# Check whether --with-xml was given. -if test "${with_xml+set}" = set; then : +if test ${with_xml+y} +then : withval=$with_xml; fi
# Check whether --with-xrandr was given. -if test "${with_xrandr+set}" = set; then : +if test ${with_xrandr+y} +then : withval=$with_xrandr; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xrandr_h=no; fi fi
# Check whether --with-xrender was given. -if test "${with_xrender+set}" = set; then : +if test ${with_xrender+y} +then : withval=$with_xrender; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xrender_h=no; fi fi
# Check whether --with-xshape was given. -if test "${with_xshape+set}" = set; then : +if test ${with_xshape+y} +then : withval=$with_xshape; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_shape_h=no; fi fi
# Check whether --with-xshm was given. -if test "${with_xshm+set}" = set; then : +if test ${with_xshm+y} +then : withval=$with_xshm; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XShm_h=no; fi fi
# Check whether --with-xslt was given. -if test "${with_xslt+set}" = set; then : +if test ${with_xslt+y} +then : withval=$with_xslt; fi
# Check whether --with-xxf86vm was given. -if test "${with_xxf86vm+set}" = set; then : +if test ${with_xxf86vm+y} +then : withval=$with_xxf86vm; if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_xf86vmode_h=no; ac_cv_header_X11_extensions_xf86vmproto_h=no; fi fi
# Check whether --with-wine-tools was given. -if test "${with_wine_tools+set}" = set; then : +if test ${with_wine_tools+y} +then : withval=$with_wine_tools; fi
# Check whether --with-wine64 was given. -if test "${with_wine64+set}" = set; then : +if test ${with_wine64+y} +then : withval=$with_wine64; fi
-# Make sure we can run config.sub. -$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
- as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 -$as_echo_n "checking build system type... " >&6; } -if ${ac_cv_build+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- # Make sure we can run config.sub.
+$SHELL "${ac_aux_dir}config.sub" sun4 >/dev/null 2>&1 ||
- as_fn_error $? "cannot run $SHELL ${ac_aux_dir}config.sub" "$LINENO" 5
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 +printf %s "checking build system type... " >&6; } +if test ${ac_cv_build+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_build_alias=$build_alias test "x$ac_build_alias" = x &&
- ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
- ac_build_alias=`$SHELL "${ac_aux_dir}config.guess"`
test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 -ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
- as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
+ac_cv_build=`$SHELL "${ac_aux_dir}config.sub" $ac_build_alias` ||
- as_fn_error $? "$SHELL ${ac_aux_dir}config.sub $ac_build_alias failed" "$LINENO" 5
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 -$as_echo "$ac_cv_build" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 +printf "%s\n" "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; @@ -4365,21 +4855,22 @@ IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 -$as_echo_n "checking host system type... " >&6; } -if ${ac_cv_host+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 +printf %s "checking host system type... " >&6; } +if test ${ac_cv_host+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else
- ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
- as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
- ac_cv_host=`$SHELL "${ac_aux_dir}config.sub" $host_alias` ||
- as_fn_error $? "$SHELL ${ac_aux_dir}config.sub $host_alias failed" "$LINENO" 5
fi
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 -$as_echo "$ac_cv_host" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 +printf "%s\n" "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; @@ -4400,13 +4891,14 @@ case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets $(MAKE)" >&5 -$as_echo_n "checking whether ${MAKE-make} sets $(MAKE)... " >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets $(MAKE)" >&5 +printf %s "checking whether ${MAKE-make} sets $(MAKE)... " >&6; } set x ${MAKE-make} -ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -if eval ${ac_cv_prog_make_${ac_make}_set+:} false; then :
- $as_echo_n "(cached) " >&6
-else +ac_make=`printf "%s\n" "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if eval test ${ac_cv_prog_make_${ac_make}_set+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat >conftest.make <<_ACEOF SHELL = /bin/sh all: @@ -4422,15 +4914,24 @@ esac rm -f conftest.make fi if eval test $ac_cv_prog_make_${ac_make}_set = yes; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; } SET_MAKE= else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi
ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -4439,11 +4940,12 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CC+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else @@ -4451,11 +4953,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -4466,11 +4972,11 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-$as_echo "$CC" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
+printf "%s\n" "$CC" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -4479,11 +4985,12 @@ if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_CC+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else @@ -4491,11 +4998,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -4506,11 +5017,11 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
-$as_echo "$ac_ct_CC" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
+printf "%s\n" "$ac_ct_CC" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_CC" = x; then @@ -4518,8 +5029,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC @@ -4532,11 +5043,12 @@ if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CC+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else @@ -4544,11 +5056,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -4559,11 +5075,11 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-$as_echo "$CC" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
+printf "%s\n" "$CC" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -4572,11 +5088,12 @@ fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CC+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else @@ -4585,15 +5102,19 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
- if test "$as_dir$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -4609,18 +5130,18 @@ if test $ac_prog_rejected = yes; then # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift
- ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
- ac_cv_prog_CC="$as_dir$ac_word${1+' '}$@" fi
fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-$as_echo "$CC" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
+printf "%s\n" "$CC" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -4631,11 +5152,12 @@ if test -z "$CC"; then do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CC+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CC+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else @@ -4643,11 +5165,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -4658,11 +5184,11 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-$as_echo "$CC" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
+printf "%s\n" "$CC" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -4675,11 +5201,12 @@ if test -z "$CC"; then do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CC+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_CC+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else @@ -4687,11 +5214,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -4702,11 +5233,11 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
-$as_echo "$ac_ct_CC" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
+printf "%s\n" "$ac_ct_CC" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -4718,34 +5249,138 @@ done else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac
- CC=$ac_ct_CC
- fi
+fi
+fi +if test -z "$CC"; then
- if test -n "$ac_tool_prefix"; then
- # Extract the first word of "${ac_tool_prefix}clang", so it can be a program name with args.
+set dummy ${ac_tool_prefix}clang; ac_word=$2 +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CC+y} +then :
- printf %s "(cached) " >&6
+else $as_nop
- if test -n "$CC"; then
- ac_cv_prog_CC="$CC" # Let the user override the test.
+else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do
- IFS=$as_save_IFS
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac
- for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
- ac_cv_prog_CC="${ac_tool_prefix}clang"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
- break 2
- fi
+done
- done
+IFS=$as_save_IFS
+fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
+printf "%s\n" "$CC" >&6; } +else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } +fi
+fi +if test -z "$ac_cv_prog_CC"; then
- ac_ct_CC=$CC
- # Extract the first word of "clang", so it can be a program name with args.
+set dummy clang; ac_word=$2 +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_CC+y} +then :
- printf %s "(cached) " >&6
+else $as_nop
- if test -n "$ac_ct_CC"; then
- ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
+else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do
- IFS=$as_save_IFS
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac
- for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
- ac_cv_prog_ac_ct_CC="clang"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
- break 2
- fi
+done
- done
+IFS=$as_save_IFS
+fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
+printf "%s\n" "$ac_ct_CC" >&6; } +else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } +fi
- if test "x$ac_ct_CC" = x; then
- CC=""
- else
- case $cross_compiling:$ac_tool_warned in
+yes:) +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi +else
- CC="$ac_cv_prog_CC"
fi
fi
-test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 -$as_echo "$as_me: error: in `$ac_pwd':" >&2;} +test -z "$CC" && { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 +printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in $PATH See `config.log' for more details" "$LINENO" 5; }
# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 -for ac_option in --version -v -V -qversion; do +for ac_option in --version -v -V -qversion -version; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *"* | *`* | *\*) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then @@ -4755,7 +5390,7 @@ $as_echo "$ac_try_echo"; } >&5 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; }
done
@@ -4763,7 +5398,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; @@ -4775,9 +5410,9 @@ ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 -$as_echo_n "checking whether the C compiler works... " >&6; } -ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 +printf %s "checking whether the C compiler works... " >&6; } +ac_link_default=`printf "%s\n" "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
# The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" @@ -4798,11 +5433,12 @@ case "(($ac_try" in *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- test $ac_status = 0; }; then :
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- test $ac_status = 0; }
+then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, @@ -4819,7 +5455,7 @@ do # certainly right. break;; *.* )
- if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
- if test ${ac_cv_exeext+y} && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*(..*)'` fi
@@ -4835,44 +5471,46 @@ do done test "$ac_cv_exeext" = no && ac_cv_exeext=
-else +else $as_nop ac_file='' fi -if test -z "$ac_file"; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; } -$as_echo "$as_me: failed program was:" >&5 +if test -z "$ac_file" +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } +printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5
-{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 -$as_echo "$as_me: error: in `$ac_pwd':" >&2;} +{ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 +printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See `config.log' for more details" "$LINENO" 5; } -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; } -fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 -$as_echo_n "checking for C compiler default output file name... " >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 -$as_echo "$ac_file" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; } +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 +printf %s "checking for C compiler default output file name... " >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +printf "%s\n" "$ac_file" >&6; } ac_exeext=$ac_cv_exeext
rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 -$as_echo_n "checking for suffix of executables... " >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 +printf %s "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *"* | *`* | *\*) ac_try_echo=$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- test $ac_status = 0; }; then :
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- test $ac_status = 0; }
+then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with @@ -4886,15 +5524,15 @@ for ac_file in conftest.exe conftest conftest.*; do * ) break;; esac done -else
- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5
-$as_echo "$as_me: error: in `$ac_pwd':" >&2;} +else $as_nop
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5
+printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See `config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 -$as_echo "$ac_cv_exeext" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 +printf "%s\n" "$ac_cv_exeext" >&6; }
rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext @@ -4903,7 +5541,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <stdio.h> int -main () +main (void) { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; @@ -4915,8 +5553,8 @@ _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 -$as_echo_n "checking whether we are cross compiling... " >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +printf %s "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in @@ -4924,10 +5562,10 @@ case "(($ac_try" in *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in
@@ -4935,39 +5573,40 @@ $as_echo "$ac_try_echo"; } >&5 *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else
- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5
-$as_echo "$as_me: error: in `$ac_pwd':" >&2;} -as_fn_error $? "cannot run C compiled programs.
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5
+printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;} +as_fn_error 77 "cannot run C compiled programs. If you meant to cross compile, use `--host'. See `config.log' for more details" "$LINENO" 5; } fi fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 -$as_echo "$cross_compiling" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +printf "%s\n" "$cross_compiling" >&6; }
rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 -$as_echo_n "checking for suffix of object files... " >&6; } -if ${ac_cv_objext+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 +printf %s "checking for suffix of object files... " >&6; } +if test ${ac_cv_objext+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; @@ -4981,11 +5620,12 @@ case "(($ac_try" in *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- test $ac_status = 0; }; then :
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- test $ac_status = 0; }
+then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in @@ -4994,31 +5634,32 @@ $as_echo "$ac_try_echo"; } >&5 break;; esac done -else
- $as_echo "$as_me: failed program was:" >&5
+else $as_nop
- printf "%s\n" "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
-{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 -$as_echo "$as_me: error: in `$ac_pwd':" >&2;} +{ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5 +printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See `config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 -$as_echo "$ac_cv_objext" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 +printf "%s\n" "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 -$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } -if ${ac_cv_c_compiler_gnu+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5 +printf %s "checking whether the compiler supports GNU C... " >&6; } +if test ${ac_cv_c_compiler_gnu+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) { #ifndef __GNUC__ choke me @@ -5028,29 +5669,33 @@ main () return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_compiler_gnu=yes -else +else $as_nop ac_compiler_gnu=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 -$as_echo "$ac_cv_c_compiler_gnu" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 +printf "%s\n" "$ac_cv_c_compiler_gnu" >&6; } +ac_compiler_gnu=$ac_cv_c_compiler_gnu
if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi -ac_test_CFLAGS=${CFLAGS+set} +ac_test_CFLAGS=${CFLAGS+y} ac_save_CFLAGS=$CFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 -$as_echo_n "checking whether $CC accepts -g... " >&6; } -if ${ac_cv_prog_cc_g+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 +printf %s "checking whether $CC accepts -g... " >&6; } +if test ${ac_cv_prog_cc_g+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no @@ -5059,57 +5704,60 @@ else /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_prog_cc_g=yes -else +else $as_nop CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then :
-else +else $as_nop ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_prog_cc_g=yes fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 -$as_echo "$ac_cv_prog_cc_g" >&6; } -if test "$ac_test_CFLAGS" = set; then +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 +printf "%s\n" "$ac_cv_prog_cc_g" >&6; } +if test $ac_test_CFLAGS; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then @@ -5124,94 +5772,144 @@ else CFLAGS= fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 -$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } -if ${ac_cv_prog_cc_c89+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- ac_cv_prog_cc_c89=no
+ac_prog_cc_stdc=no +if test x$ac_prog_cc_stdc = xno +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5
+printf %s "checking for $CC option to enable C11 features... " >&6; } +if test ${ac_cv_prog_cc_c11+y} +then :
- printf %s "(cached) " >&6
+else $as_nop
- ac_cv_prog_cc_c11=no
ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -#include <stdarg.h> -#include <stdio.h> -struct stat; -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i)
char **p;
int i;
-{
- return p[i];
-} -static char *f (char * (*g) (char **, int), char **p, ...) -{
- char *s;
- va_list v;
- va_start (v,p);
- s = g (p, va_arg (v,int));
- va_end (v);
- return s;
-}
-/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
- function prototypes and stuff, but not '\xHH' hex character constants.
- These don't provoke an error unfortunately, instead are silently treated
- as 'x'. The following induces an error, until -std is added to get
- proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
- array size at least. It's necessary to write '\x00'==0 to get something
- that's true only with -std. */
-int osf4_cc_array ['\x00' == 0 ? 1 : -1]; +$ac_c_conftest_c11_program +_ACEOF +for ac_arg in '' -std=gnu11 +do
- CC="$ac_save_CC $ac_arg"
- if ac_fn_c_try_compile "$LINENO"
+then :
- ac_cv_prog_cc_c11=$ac_arg
+fi +rm -f core conftest.err conftest.$ac_objext conftest.beam
- test "x$ac_cv_prog_cc_c11" != "xno" && break
+done +rm -f conftest.$ac_ext +CC=$ac_save_CC +fi
-/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
- inside strings and character constants. */
-#define FOO(x) 'x' -int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; +if test "x$ac_cv_prog_cc_c11" = xno +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
+printf "%s\n" "unsupported" >&6; } +else $as_nop
- if test "x$ac_cv_prog_cc_c11" = x
+then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
+printf "%s\n" "none needed" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5
+printf "%s\n" "$ac_cv_prog_cc_c11" >&6; }
CC="$CC $ac_cv_prog_cc_c11"
+fi
- ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c11
- ac_prog_cc_stdc=c11
+fi +fi +if test x$ac_prog_cc_stdc = xno +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5
+printf %s "checking for $CC option to enable C99 features... " >&6; } +if test ${ac_cv_prog_cc_c99+y} +then :
- printf %s "(cached) " >&6
+else $as_nop
- ac_cv_prog_cc_c99=no
+ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$ac_c_conftest_c99_program +_ACEOF +for ac_arg in '' -std=gnu99 -std=c99 -c99 -qlanglvl=extc1x -qlanglvl=extc99 -AC99 -D_STDC_C99= +do
- CC="$ac_save_CC $ac_arg"
- if ac_fn_c_try_compile "$LINENO"
+then :
- ac_cv_prog_cc_c99=$ac_arg
+fi +rm -f core conftest.err conftest.$ac_objext conftest.beam
- test "x$ac_cv_prog_cc_c99" != "xno" && break
+done +rm -f conftest.$ac_ext +CC=$ac_save_CC +fi
-int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
- ;
- return 0;
-} +if test "x$ac_cv_prog_cc_c99" = xno +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
+printf "%s\n" "unsupported" >&6; } +else $as_nop
- if test "x$ac_cv_prog_cc_c99" = x
+then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
+printf "%s\n" "none needed" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5
+printf "%s\n" "$ac_cv_prog_cc_c99" >&6; }
CC="$CC $ac_cv_prog_cc_c99"
+fi
- ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c99
- ac_prog_cc_stdc=c99
+fi +fi +if test x$ac_prog_cc_stdc = xno +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5
+printf %s "checking for $CC option to enable C89 features... " >&6; } +if test ${ac_cv_prog_cc_c89+y} +then :
- printf %s "(cached) " >&6
+else $as_nop
- ac_cv_prog_cc_c89=no
+ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$ac_c_conftest_c89_program _ACEOF -for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
- -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
+for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg"
- if ac_fn_c_try_compile "$LINENO"; then :
- if ac_fn_c_try_compile "$LINENO"
+then : ac_cv_prog_cc_c89=$ac_arg fi -rm -f core conftest.err conftest.$ac_objext +rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC
fi -# AC_CACHE_VAL -case "x$ac_cv_prog_cc_c89" in
- x)
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
-$as_echo "none needed" >&6; } ;;
- xno)
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
-$as_echo "unsupported" >&6; } ;;
- *)
- CC="$CC $ac_cv_prog_cc_c89"
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
-$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; -esac -if test "x$ac_cv_prog_cc_c89" != xno; then :
+if test "x$ac_cv_prog_cc_c89" = xno +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
+printf "%s\n" "unsupported" >&6; } +else $as_nop
- if test "x$ac_cv_prog_cc_c89" = x
+then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
+printf "%s\n" "none needed" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
+printf "%s\n" "$ac_cv_prog_cc_c89" >&6; }
CC="$CC $ac_cv_prog_cc_c89"
+fi
- ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c89
- ac_prog_cc_stdc=c89
+fi fi
ac_ext=c @@ -5220,6 +5918,12 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -5230,15 +5934,16 @@ if test -z "$CXX"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then
- for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC
- for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC clang++ do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CXX+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CXX+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else @@ -5246,11 +5951,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -5261,11 +5970,11 @@ fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
-$as_echo "$CXX" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
+printf "%s\n" "$CXX" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -5274,15 +5983,16 @@ fi fi if test -z "$CXX"; then ac_ct_CXX=$CXX
- for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC
- for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC clang++
do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CXX+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_CXX+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else @@ -5290,11 +6000,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CXX="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -5305,11 +6019,11 @@ fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5
-$as_echo "$ac_ct_CXX" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5
+printf "%s\n" "$ac_ct_CXX" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -5321,8 +6035,8 @@ done else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX @@ -5332,7 +6046,7 @@ fi fi fi # Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do @@ -5342,7 +6056,7 @@ case "(($ac_try" in *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then @@ -5352,20 +6066,21 @@ $as_echo "$ac_try_echo"; } >&5 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; }
done
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 -$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } -if ${ac_cv_cxx_compiler_gnu+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C++" >&5 +printf %s "checking whether the compiler supports GNU C++... " >&6; } +if test ${ac_cv_cxx_compiler_gnu+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) { #ifndef __GNUC__ choke me @@ -5375,29 +6090,33 @@ main () return 0; } _ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : +if ac_fn_cxx_try_compile "$LINENO" +then : ac_compiler_gnu=yes -else +else $as_nop ac_compiler_gnu=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 -$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 +printf "%s\n" "$ac_cv_cxx_compiler_gnu" >&6; } +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
if test $ac_compiler_gnu = yes; then GXX=yes else GXX= fi -ac_test_CXXFLAGS=${CXXFLAGS+set} +ac_test_CXXFLAGS=${CXXFLAGS+y} ac_save_CXXFLAGS=$CXXFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 -$as_echo_n "checking whether $CXX accepts -g... " >&6; } -if ${ac_cv_prog_cxx_g+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 +printf %s "checking whether $CXX accepts -g... " >&6; } +if test ${ac_cv_prog_cxx_g+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no @@ -5406,57 +6125,60 @@ else /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : +if ac_fn_cxx_try_compile "$LINENO" +then : ac_cv_prog_cxx_g=yes -else +else $as_nop CXXFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : +if ac_fn_cxx_try_compile "$LINENO" +then :
-else +else $as_nop ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_cxx_try_compile "$LINENO"; then : +if ac_fn_cxx_try_compile "$LINENO" +then : ac_cv_prog_cxx_g=yes fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cxx_werror_flag=$ac_save_cxx_werror_flag fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 -$as_echo "$ac_cv_prog_cxx_g" >&6; } -if test "$ac_test_CXXFLAGS" = set; then +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 +printf "%s\n" "$ac_cv_prog_cxx_g" >&6; } +if test $ac_test_CXXFLAGS; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then @@ -5471,6 +6193,100 @@ else CXXFLAGS= fi fi +ac_prog_cxx_stdcxx=no +if test x$ac_prog_cxx_stdcxx = xno +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++11 features" >&5
+printf %s "checking for $CXX option to enable C++11 features... " >&6; } +if test ${ac_cv_prog_cxx_11+y} +then :
- printf %s "(cached) " >&6
+else $as_nop
- ac_cv_prog_cxx_11=no
+ac_save_CXX=$CXX +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$ac_cxx_conftest_cxx11_program +_ACEOF +for ac_arg in '' -std=gnu++11 -std=gnu++0x -std=c++11 -std=c++0x -qlanglvl=extended0x -AA +do
- CXX="$ac_save_CXX $ac_arg"
- if ac_fn_cxx_try_compile "$LINENO"
+then :
- ac_cv_prog_cxx_cxx11=$ac_arg
+fi +rm -f core conftest.err conftest.$ac_objext conftest.beam
- test "x$ac_cv_prog_cxx_cxx11" != "xno" && break
+done +rm -f conftest.$ac_ext +CXX=$ac_save_CXX +fi
+if test "x$ac_cv_prog_cxx_cxx11" = xno +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
+printf "%s\n" "unsupported" >&6; } +else $as_nop
- if test "x$ac_cv_prog_cxx_cxx11" = x
+then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
+printf "%s\n" "none needed" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_cxx11" >&5
+printf "%s\n" "$ac_cv_prog_cxx_cxx11" >&6; }
CXX="$CXX $ac_cv_prog_cxx_cxx11"
+fi
- ac_cv_prog_cxx_stdcxx=$ac_cv_prog_cxx_cxx11
- ac_prog_cxx_stdcxx=cxx11
+fi +fi +if test x$ac_prog_cxx_stdcxx = xno +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++98 features" >&5
+printf %s "checking for $CXX option to enable C++98 features... " >&6; } +if test ${ac_cv_prog_cxx_98+y} +then :
- printf %s "(cached) " >&6
+else $as_nop
- ac_cv_prog_cxx_98=no
+ac_save_CXX=$CXX +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$ac_cxx_conftest_cxx98_program +_ACEOF +for ac_arg in '' -std=gnu++98 -std=c++98 -qlanglvl=extended -AA +do
- CXX="$ac_save_CXX $ac_arg"
- if ac_fn_cxx_try_compile "$LINENO"
+then :
- ac_cv_prog_cxx_cxx98=$ac_arg
+fi +rm -f core conftest.err conftest.$ac_objext conftest.beam
- test "x$ac_cv_prog_cxx_cxx98" != "xno" && break
+done +rm -f conftest.$ac_ext +CXX=$ac_save_CXX +fi
+if test "x$ac_cv_prog_cxx_cxx98" = xno +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
+printf "%s\n" "unsupported" >&6; } +else $as_nop
- if test "x$ac_cv_prog_cxx_cxx98" = x
+then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
+printf "%s\n" "none needed" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_cxx98" >&5
+printf "%s\n" "$ac_cv_prog_cxx_cxx98" >&6; }
CXX="$CXX $ac_cv_prog_cxx_cxx98"
+fi
- ac_cv_prog_cxx_stdcxx=$ac_cv_prog_cxx_cxx98
- ac_prog_cxx_stdcxx=cxx98
+fi +fi
ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -5480,11 +6296,12 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cpp", so it can be a program name with args. set dummy ${ac_tool_prefix}cpp; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CPPBIN+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CPPBIN+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$CPPBIN"; then ac_cv_prog_CPPBIN="$CPPBIN" # Let the user override the test. else @@ -5492,11 +6309,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CPPBIN="${ac_tool_prefix}cpp"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -5507,11 +6328,11 @@ fi fi CPPBIN=$ac_cv_prog_CPPBIN if test -n "$CPPBIN"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPPBIN" >&5
-$as_echo "$CPPBIN" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CPPBIN" >&5
+printf "%s\n" "$CPPBIN" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -5520,11 +6341,12 @@ if test -z "$ac_cv_prog_CPPBIN"; then ac_ct_CPPBIN=$CPPBIN # Extract the first word of "cpp", so it can be a program name with args. set dummy cpp; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_CPPBIN+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_CPPBIN+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$ac_ct_CPPBIN"; then ac_cv_prog_ac_ct_CPPBIN="$ac_ct_CPPBIN" # Let the user override the test. else @@ -5532,11 +6354,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CPPBIN="cpp"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -5547,11 +6373,11 @@ fi fi ac_ct_CPPBIN=$ac_cv_prog_ac_ct_CPPBIN if test -n "$ac_ct_CPPBIN"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CPPBIN" >&5
-$as_echo "$ac_ct_CPPBIN" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CPPBIN" >&5
+printf "%s\n" "$ac_ct_CPPBIN" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_CPPBIN" = x; then @@ -5559,8 +6385,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CPPBIN=$ac_ct_CPPBIN @@ -5570,18 +6396,17 @@ else fi
-cat >>confdefs.h <<_ACEOF -#define EXEEXT "$ac_exeext" -_ACEOF +printf "%s\n" "#define EXEEXT "$ac_exeext"" >>confdefs.h
if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ld", so it can be a program name with args. set dummy ${ac_tool_prefix}ld; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_LD+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_LD+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$LD"; then ac_cv_prog_LD="$LD" # Let the user override the test. else @@ -5589,11 +6414,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_LD="${ac_tool_prefix}ld"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -5604,11 +6433,11 @@ fi fi LD=$ac_cv_prog_LD if test -n "$LD"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5
-$as_echo "$LD" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LD" >&5
+printf "%s\n" "$LD" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -5617,11 +6446,12 @@ if test -z "$ac_cv_prog_LD"; then ac_ct_LD=$LD # Extract the first word of "ld", so it can be a program name with args. set dummy ld; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_LD+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_LD+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$ac_ct_LD"; then ac_cv_prog_ac_ct_LD="$ac_ct_LD" # Let the user override the test. else @@ -5629,11 +6459,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LD="ld"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -5644,11 +6478,11 @@ fi fi ac_ct_LD=$ac_cv_prog_ac_ct_LD if test -n "$ac_ct_LD"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LD" >&5
-$as_echo "$ac_ct_LD" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LD" >&5
+printf "%s\n" "$ac_ct_LD" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_LD" = x; then @@ -5656,8 +6490,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac LD=$ac_ct_LD @@ -5686,32 +6520,34 @@ case $host in CC="$CC -m32" CXX="$CXX -m32"
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC works" >&5 -$as_echo_n "checking whether $CC works... " >&6; } -if ${wine_cv_cc_m32+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC works" >&5 +printf %s "checking whether $CC works... " >&6; } +if test ${wine_cv_cc_m32+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_cc_m32=yes -else +else $as_nop wine_cv_cc_m32=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_cc_m32" >&5 -$as_echo "$wine_cv_cc_m32" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_cc_m32" >&5 +printf "%s\n" "$wine_cv_cc_m32" >&6; } test $wine_cv_cc_m32 != no || as_fn_error $? "Cannot build a 32-bit program, you need to install 32-bit development libraries." "$LINENO" 5 host_cpu="i386" notice_platform="32-bit " @@ -5723,31 +6559,33 @@ $as_echo "$wine_cv_cc_m32" >&6; } else if test "x${GCC}" = "xyes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports __builtin_ms_va_list" >&5
-$as_echo_n "checking whether $CC supports __builtin_ms_va_list... " >&6; } -if ${wine_cv_builtin_ms_va_list+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC supports __builtin_ms_va_list" >&5
+printf %s "checking whether $CC supports __builtin_ms_va_list... " >&6; } +if test ${wine_cv_builtin_ms_va_list+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <stdarg.h> int -main () +main (void) { void func(__builtin_ms_va_list *args); ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : wine_cv_builtin_ms_va_list=yes -else +else $as_nop wine_cv_builtin_ms_va_list=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_builtin_ms_va_list" >&5 -$as_echo "$wine_cv_builtin_ms_va_list" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_builtin_ms_va_list" >&5 +printf "%s\n" "$wine_cv_builtin_ms_va_list" >&6; } test $wine_cv_builtin_ms_va_list != no || as_fn_error $? "You need gcc >= 4.4 or clang >= 3.8 to build Wine as 64-bit." "$LINENO" 5 fi CC="$CC -m64" @@ -5761,32 +6599,34 @@ $as_echo "$wine_cv_builtin_ms_va_list" >&6; } fi ;; arm*)
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports Thumb-2" >&5
-$as_echo_n "checking whether $CC supports Thumb-2... " >&6; } -if ${wine_cv_thumb2+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC supports Thumb-2" >&5
+printf %s "checking whether $CC supports Thumb-2... " >&6; } +if test ${wine_cv_thumb2+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) { asm(".syntax unified\n\t.thumb\n\tldm r0,{r0-r8}"); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_thumb2=yes -else +else $as_nop wine_cv_thumb2=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_thumb2" >&5 -$as_echo "$wine_cv_thumb2" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_thumb2" >&5 +printf "%s\n" "$wine_cv_thumb2" >&6; } if test x"$wine_cv_thumb2" = xyes then CFLAGS="$CFLAGS -mthumb" @@ -5806,32 +6646,34 @@ $as_echo "$wine_cv_thumb2" >&6; } float_abi=softfp saved_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -mfloat-abi=$float_abi"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -mfloat-abi=$float_abi" >&5
-$as_echo_n "checking whether $CC supports -mfloat-abi=$float_abi... " >&6; } -if ${wine_cv_float_abi+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -mfloat-abi=$float_abi" >&5
+printf %s "checking whether $CC supports -mfloat-abi=$float_abi... " >&6; } +if test ${wine_cv_float_abi+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) { asm("vmrs r2,fpscr"); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_float_abi=yes -else +else $as_nop wine_cv_float_abi=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_float_abi" >&5 -$as_echo "$wine_cv_float_abi" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_float_abi" >&5 +printf "%s\n" "$wine_cv_float_abi" >&6; } if test $wine_cv_float_abi = no then float_abi=soft @@ -5845,31 +6687,33 @@ $as_echo "$wine_cv_float_abi" >&6; } TARGETFLAGS="$TARGETFLAGS -mfloat-abi=$float_abi" ;; aarch64*)
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports __builtin_ms_va_list" >&5
-$as_echo_n "checking whether $CC supports __builtin_ms_va_list... " >&6; } -if ${wine_cv_builtin_ms_va_list+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC supports __builtin_ms_va_list" >&5
+printf %s "checking whether $CC supports __builtin_ms_va_list... " >&6; } +if test ${wine_cv_builtin_ms_va_list+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <stdarg.h> int -main () +main (void) { void func(__builtin_ms_va_list *args); ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : wine_cv_builtin_ms_va_list=yes -else +else $as_nop wine_cv_builtin_ms_va_list=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_builtin_ms_va_list" >&5 -$as_echo "$wine_cv_builtin_ms_va_list" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_builtin_ms_va_list" >&5 +printf "%s\n" "$wine_cv_builtin_ms_va_list" >&6; } test $wine_cv_builtin_ms_va_list != no || as_fn_error $? "You need clang >= 5.0 to build Wine for arm64." "$LINENO" 5 enable_wow64=${enable_wow64:-yes} enable_wow64win=${enable_wow64win:-yes} @@ -5907,11 +6751,12 @@ case $host_cpu in ;; esac
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the directory containing the Wine tools" >&5 -$as_echo_n "checking for the directory containing the Wine tools... " >&6; } -if ${wine_cv_toolsdir+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for the directory containing the Wine tools" >&5 +printf %s "checking for the directory containing the Wine tools... " >&6; } +if test ${wine_cv_toolsdir+y} +then :
- printf %s "(cached) " >&6
+else $as_nop wine_cv_toolsdir="$with_wine_tools" if test -z "$with_wine_tools"; then if test "$cross_compiling" = "yes"; then @@ -5921,8 +6766,8 @@ else fi fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_toolsdir" >&5 -$as_echo "$wine_cv_toolsdir" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_toolsdir" >&5 +printf "%s\n" "$wine_cv_toolsdir" >&6; } if test -z "$wine_cv_toolsdir"; then wine_makedep=tools/makedep TOOLSDIR="." @@ -5945,11 +6790,12 @@ for ac_prog in flex do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_FLEX+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_FLEX+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$FLEX"; then ac_cv_prog_FLEX="$FLEX" # Let the user override the test. else @@ -5957,11 +6803,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_FLEX="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -5972,11 +6822,11 @@ fi fi FLEX=$ac_cv_prog_FLEX if test -n "$FLEX"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FLEX" >&5
-$as_echo "$FLEX" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $FLEX" >&5
+printf "%s\n" "$FLEX" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -5988,11 +6838,12 @@ if test "$FLEX" = "none" then as_fn_error $? "no suitable flex found. Please install the 'flex' package." "$LINENO" 5 fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether flex is recent enough" >&5 -$as_echo_n "checking whether flex is recent enough... " >&6; } -if ${wine_cv_recent_flex+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether flex is recent enough" >&5 +printf %s "checking whether flex is recent enough... " >&6; } +if test ${wine_cv_recent_flex+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat >conftest.l <<EOF %top{ #include "prediluvian.h" @@ -6006,19 +6857,20 @@ EOF wine_cv_recent_flex=no fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_recent_flex" >&5 -$as_echo "$wine_cv_recent_flex" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_recent_flex" >&5 +printf "%s\n" "$wine_cv_recent_flex" >&6; } test $wine_cv_recent_flex != no || as_fn_error $? "Your flex version is too old. Please install flex version 2.5.33 or newer." "$LINENO" 5
for ac_prog in bison do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_BISON+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_BISON+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$BISON"; then ac_cv_prog_BISON="$BISON" # Let the user override the test. else @@ -6026,11 +6878,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_BISON="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -6041,11 +6897,11 @@ fi fi BISON=$ac_cv_prog_BISON if test -n "$BISON"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $BISON" >&5
-$as_echo "$BISON" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $BISON" >&5
+printf "%s\n" "$BISON" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -6057,11 +6913,12 @@ if test "$BISON" = "none" then as_fn_error $? "no suitable bison found. Please install the 'bison' package." "$LINENO" 5 fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether bison is recent enough" >&5 -$as_echo_n "checking whether bison is recent enough... " >&6; } -if ${wine_cv_recent_bison+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether bison is recent enough" >&5 +printf %s "checking whether bison is recent enough... " >&6; } +if test ${wine_cv_recent_bison+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat >conftest.y <<EOF %define parse.error verbose %% @@ -6074,8 +6931,8 @@ EOF wine_cv_recent_bison=no fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_recent_bison" >&5 -$as_echo "$wine_cv_recent_bison" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_recent_bison" >&5 +printf "%s\n" "$wine_cv_recent_bison" >&6; } test $wine_cv_recent_bison != no || as_fn_error $? "Your bison version is too old. Please install bison version 3.0 or newer." "$LINENO" 5
if test -n "$ac_tool_prefix"; then @@ -6083,11 +6940,12 @@ if test -n "$ac_tool_prefix"; then do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_AR+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_AR+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else @@ -6095,11 +6953,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -6110,11 +6972,11 @@ fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5
-$as_echo "$AR" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AR" >&5
+printf "%s\n" "$AR" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -6127,11 +6989,12 @@ if test -z "$AR"; then do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_AR+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_AR+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else @@ -6139,11 +7002,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -6154,11 +7021,11 @@ fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5
-$as_echo "$ac_ct_AR" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5
+printf "%s\n" "$ac_ct_AR" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -6170,8 +7037,8 @@ done else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR @@ -6181,11 +7048,12 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_STRIP+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_STRIP+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else @@ -6193,11 +7061,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -6208,11 +7080,11 @@ fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
-$as_echo "$STRIP" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
+printf "%s\n" "$STRIP" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -6221,11 +7093,12 @@ if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_STRIP+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else @@ -6233,11 +7106,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -6248,11 +7125,11 @@ fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
-$as_echo "$ac_ct_STRIP" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
+printf "%s\n" "$ac_ct_STRIP" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_STRIP" = x; then @@ -6260,8 +7137,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP @@ -6273,11 +7150,12 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_RANLIB+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_RANLIB+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else @@ -6285,11 +7163,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -6300,11 +7182,11 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5
-$as_echo "$RANLIB" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5
+printf "%s\n" "$RANLIB" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -6313,11 +7195,12 @@ if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_RANLIB+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else @@ -6325,11 +7208,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -6340,11 +7227,11 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5
-$as_echo "$ac_ct_RANLIB" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5
+printf "%s\n" "$ac_ct_RANLIB" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_RANLIB" = x; then @@ -6352,8 +7239,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB @@ -6362,22 +7249,23 @@ else RANLIB="$ac_cv_prog_RANLIB" fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 -$as_echo_n "checking whether ln -s works... " >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 +printf %s "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5
-$as_echo "no, using $LN_S" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5
+printf "%s\n" "no, using $LN_S" >&6; } fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 -$as_echo_n "checking for grep that handles long lines and -e... " >&6; } -if ${ac_cv_path_GREP+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 +printf %s "checking for grep that handles long lines and -e... " >&6; } +if test ${ac_cv_path_GREP+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST @@ -6385,10 +7273,15 @@ else for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_prog in grep ggrep; do
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac
- for ac_prog in grep ggrep
- do for ac_exec_ext in '' $ac_executable_extensions; do
ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
ac_path_GREP="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue
# Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP @@ -6397,13 +7290,13 @@ case `"$ac_path_GREP" --version 2>&1` in ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0
- $as_echo_n 0123456789 >"conftest.in"
- printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl"
- $as_echo 'GREP' >> "conftest.nl"
- printf "%s\n" 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val
@@ -6431,16 +7324,17 @@ else fi
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 -$as_echo "$ac_cv_path_GREP" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 +printf "%s\n" "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP"
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 -$as_echo_n "checking for egrep... " >&6; } -if ${ac_cv_path_EGREP+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 +printf %s "checking for egrep... " >&6; } +if test ${ac_cv_path_EGREP+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else @@ -6451,10 +7345,15 @@ else for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_prog in egrep; do
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac
- for ac_prog in egrep
- do for ac_exec_ext in '' $ac_executable_extensions; do
ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
ac_path_EGREP="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue
# Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP @@ -6463,13 +7362,13 @@ case `"$ac_path_EGREP" --version 2>&1` in ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0
- $as_echo_n 0123456789 >"conftest.in"
- printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl"
- $as_echo 'EGREP' >> "conftest.nl"
- printf "%s\n" 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val
@@ -6498,18 +7397,19 @@ fi
fi
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 -$as_echo "$ac_cv_path_EGREP" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 +printf "%s\n" "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP"
# Extract the first word of "ldconfig", so it can be a program name with args. set dummy ldconfig; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_LDCONFIG+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_path_LDCONFIG+y} +then :
- printf %s "(cached) " >&6
+else $as_nop case $LDCONFIG in [\/]* | ?:[\/]*) ac_cv_path_LDCONFIG="$LDCONFIG" # Let the user override the test with a path. @@ -6519,11 +7419,15 @@ else for as_dir in /sbin /usr/sbin $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- ac_cv_path_LDCONFIG="$as_dir/$ac_word$ac_exec_ext"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
- ac_cv_path_LDCONFIG="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -6536,11 +7440,11 @@ esac fi LDCONFIG=$ac_cv_path_LDCONFIG if test -n "$LDCONFIG"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LDCONFIG" >&5
-$as_echo "$LDCONFIG" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LDCONFIG" >&5
+printf "%s\n" "$LDCONFIG" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -6548,11 +7452,12 @@ for ac_prog in msgfmt do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_MSGFMT+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_MSGFMT+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$MSGFMT"; then ac_cv_prog_MSGFMT="$MSGFMT" # Let the user override the test. else @@ -6560,11 +7465,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_MSGFMT="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -6575,11 +7484,11 @@ fi fi MSGFMT=$ac_cv_prog_MSGFMT if test -n "$MSGFMT"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5
-$as_echo "$MSGFMT" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5
+printf "%s\n" "$MSGFMT" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -6587,14 +7496,16 @@ fi done test -n "$MSGFMT" || MSGFMT="false"
-if ${ac_tool_prefix+:} false; then : +if test ${ac_tool_prefix+y} +then : # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_PKG_CONFIG+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_PKG_CONFIG+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$PKG_CONFIG"; then ac_cv_prog_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test. else @@ -6602,11 +7513,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_PKG_CONFIG="${ac_tool_prefix}pkg-config"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -6617,27 +7532,30 @@ fi fi PKG_CONFIG=$ac_cv_prog_PKG_CONFIG if test -n "$PKG_CONFIG"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
-$as_echo "$PKG_CONFIG" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
+printf "%s\n" "$PKG_CONFIG" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
fi -if ${ac_cv_prog_PKG_CONFIG:+false} :; then :
- if test "x$cross_compiling" = xyes; then :
+if ${ac_cv_prog_PKG_CONFIG:+false} : +then :
- if test "x$cross_compiling" = xyes
+then :
-else +else $as_nop { ac_cv_prog_PKG_CONFIG=; unset ac_cv_prog_PKG_CONFIG;} # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_PKG_CONFIG+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_PKG_CONFIG+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$PKG_CONFIG"; then ac_cv_prog_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test. else @@ -6645,11 +7563,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_PKG_CONFIG="pkg-config"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -6660,16 +7582,16 @@ fi fi PKG_CONFIG=$ac_cv_prog_PKG_CONFIG if test -n "$PKG_CONFIG"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
-$as_echo "$PKG_CONFIG" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
+printf "%s\n" "$PKG_CONFIG" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
fi -else +else $as_nop PKG_CONFIG=$ac_cv_prog_PKG_CONFIG fi
@@ -6685,11 +7607,12 @@ else do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_FONTFORGE+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_FONTFORGE+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$FONTFORGE"; then ac_cv_prog_FONTFORGE="$FONTFORGE" # Let the user override the test. else @@ -6697,11 +7620,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_FONTFORGE="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -6712,11 +7639,11 @@ fi fi FONTFORGE=$ac_cv_prog_FONTFORGE if test -n "$FONTFORGE"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FONTFORGE" >&5
-$as_echo "$FONTFORGE" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $FONTFORGE" >&5
+printf "%s\n" "$FONTFORGE" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -6728,11 +7655,12 @@ test -n "$FONTFORGE" || FONTFORGE="false" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_RSVG+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_RSVG+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$RSVG"; then ac_cv_prog_RSVG="$RSVG" # Let the user override the test. else @@ -6740,11 +7668,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_RSVG="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -6755,11 +7687,11 @@ fi fi RSVG=$ac_cv_prog_RSVG if test -n "$RSVG"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RSVG" >&5
-$as_echo "$RSVG" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $RSVG" >&5
+printf "%s\n" "$RSVG" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -6771,11 +7703,12 @@ test -n "$RSVG" || RSVG="false" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CONVERT+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CONVERT+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$CONVERT"; then ac_cv_prog_CONVERT="$CONVERT" # Let the user override the test. else @@ -6783,11 +7716,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CONVERT="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -6798,11 +7735,11 @@ fi fi CONVERT=$ac_cv_prog_CONVERT if test -n "$CONVERT"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CONVERT" >&5
-$as_echo "$CONVERT" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CONVERT" >&5
+printf "%s\n" "$CONVERT" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -6814,11 +7751,12 @@ test -n "$CONVERT" || CONVERT="false" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ICOTOOL+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ICOTOOL+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$ICOTOOL"; then ac_cv_prog_ICOTOOL="$ICOTOOL" # Let the user override the test. else @@ -6826,11 +7764,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ICOTOOL="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -6841,11 +7783,11 @@ fi fi ICOTOOL=$ac_cv_prog_ICOTOOL if test -n "$ICOTOOL"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ICOTOOL" >&5
-$as_echo "$ICOTOOL" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ICOTOOL" >&5
+printf "%s\n" "$ICOTOOL" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -6860,8 +7802,8 @@ test -n "$ICOTOOL" || ICOTOOL="false" then as_fn_error $? "You need imagemagick to rebuild icons in maintainer mode." "$LINENO" 5 else
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for recent enough imagemagick" >&5
-$as_echo_n "checking for recent enough imagemagick... " >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for recent enough imagemagick" >&5
+printf %s "checking for recent enough imagemagick... " >&6; } convert_version=`convert --version | head -n1` if test "x$convert_version" != "x" then @@ -6874,12 +7816,12 @@ $as_echo_n "checking for recent enough imagemagick... " >&6; } fi if test "$CONVERT" = false then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no ($convert_version_major.$convert_version_minor)" >&5
-$as_echo "no ($convert_version_major.$convert_version_minor)" >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no ($convert_version_major.$convert_version_minor)" >&5
+printf "%s\n" "no ($convert_version_major.$convert_version_minor)" >&6; } as_fn_error $? "You need imagemagick version 6.6 or newer to rebuild icons in maintainer mode." "$LINENO" 5 else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes ($convert_version_major.$convert_version_minor)" >&5
-$as_echo "yes ($convert_version_major.$convert_version_minor)" >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes ($convert_version_major.$convert_version_minor)" >&5
+printf "%s\n" "yes ($convert_version_major.$convert_version_minor)" >&6; } fi fi
@@ -6887,8 +7829,8 @@ $as_echo "yes ($convert_version_major.$convert_version_minor)" >&6; } then as_fn_error $? "You need icotool to rebuild icons in maintainer mode." "$LINENO" 5 else
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for recent enough icotool" >&5
-$as_echo_n "checking for recent enough icotool... " >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for recent enough icotool" >&5
+printf %s "checking for recent enough icotool... " >&6; } icotool_version=`icotool --version | head -n1` if test "x$icotool_version" != "x" then @@ -6902,12 +7844,12 @@ $as_echo_n "checking for recent enough icotool... " >&6; } fi if test "$ICOTOOL" = false then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no ($icotool_version_major.$icotool_version_minor)" >&5
-$as_echo "no ($icotool_version_major.$icotool_version_minor)" >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no ($icotool_version_major.$icotool_version_minor)" >&5
+printf "%s\n" "no ($icotool_version_major.$icotool_version_minor)" >&6; } as_fn_error $? "You need icotool version 0.29.0 or newer to rebuild icons in maintainer mode." "$LINENO" 5 else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes ($icotool_version_major.$icotool_version_minor)" >&5
-$as_echo "yes ($icotool_version_major.$icotool_version_minor)" >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes ($icotool_version_major.$icotool_version_minor)" >&5
+printf "%s\n" "yes ($icotool_version_major.$icotool_version_minor)" >&6; } fi fi
@@ -6920,11 +7862,12 @@ fi test "x$with_gettext" != xno || MSGFMT=false if test "$MSGFMT" != "false" then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether msgfmt supports contexts" >&5
-$as_echo_n "checking whether msgfmt supports contexts... " >&6; } -if ${wine_cv_msgfmt_contexts+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether msgfmt supports contexts" >&5
+printf %s "checking whether msgfmt supports contexts... " >&6; } +if test ${wine_cv_msgfmt_contexts+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat >conftest.po <<EOF # comment msgctxt "ctxt" @@ -6938,11 +7881,12 @@ EOF wine_cv_msgfmt_contexts=no fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_msgfmt_contexts" >&5 -$as_echo "$wine_cv_msgfmt_contexts" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_msgfmt_contexts" >&5 +printf "%s\n" "$wine_cv_msgfmt_contexts" >&6; } test $wine_cv_msgfmt_contexts != no || MSGFMT=false fi -if test "$MSGFMT" = false; then : +if test "$MSGFMT" = false +then : case "x$with_gettext" in x) as_fn_append wine_warnings "|gettext tools not found (or too old), translations won't be built." ;; xno) ;; @@ -6953,11 +7897,12 @@ enable_po=${enable_po:-no} fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for i386_set_ldt in -li386" >&5 -$as_echo_n "checking for i386_set_ldt in -li386... " >&6; } -if ${ac_cv_lib_i386_i386_set_ldt+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for i386_set_ldt in -li386" >&5 +printf %s "checking for i386_set_ldt in -li386... " >&6; } +if test ${ac_cv_lib_i386_i386_set_ldt+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-li386 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -6966,30 +7911,29 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char i386_set_ldt (); int -main () +main (void) { return i386_set_ldt (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_i386_i386_set_ldt=yes -else +else $as_nop ac_cv_lib_i386_i386_set_ldt=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_i386_i386_set_ldt" >&5 -$as_echo "$ac_cv_lib_i386_i386_set_ldt" >&6; } -if test "x$ac_cv_lib_i386_i386_set_ldt" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_i386_i386_set_ldt" >&5 +printf "%s\n" "$ac_cv_lib_i386_i386_set_ldt" >&6; } +if test "x$ac_cv_lib_i386_i386_set_ldt" = xyes +then : I386_LIBS="-li386"
fi @@ -7000,17 +7944,19 @@ OPENGL_LIBS=""
# Check whether --enable-largefile was given. -if test "${enable_largefile+set}" = set; then : +if test ${enable_largefile+y} +then : enableval=$enable_largefile; fi
if test "$enable_largefile" != no; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5
-$as_echo_n "checking for special C compiler options needed for large files... " >&6; } -if ${ac_cv_sys_largefile_CC+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5
+printf %s "checking for special C compiler options needed for large files... " >&6; } +if test ${ac_cv_sys_largefile_CC+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_cv_sys_largefile_CC=no if test "$GCC" != yes; then ac_save_CC=$CC @@ -7024,44 +7970,47 @@ else We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ -#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) +#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int -main () +main (void) {
; return 0; } _ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
if ac_fn_c_try_compile "$LINENO"
+then : break fi -rm -f core conftest.err conftest.$ac_objext +rm -f core conftest.err conftest.$ac_objext conftest.beam CC="$CC -n32"
if ac_fn_c_try_compile "$LINENO"; then :
if ac_fn_c_try_compile "$LINENO"
+then : ac_cv_sys_largefile_CC=' -n32'; break fi -rm -f core conftest.err conftest.$ac_objext +rm -f core conftest.err conftest.$ac_objext conftest.beam break done CC=$ac_save_CC rm -f conftest.$ac_ext fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5 -$as_echo "$ac_cv_sys_largefile_CC" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5 +printf "%s\n" "$ac_cv_sys_largefile_CC" >&6; } if test "$ac_cv_sys_largefile_CC" != no; then CC=$CC$ac_cv_sys_largefile_CC fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5
-$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } -if ${ac_cv_sys_file_offset_bits+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5
+printf %s "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } +if test ${ac_cv_sys_file_offset_bits+y} +then :
- printf %s "(cached) " >&6
+else $as_nop while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -7070,22 +8019,23 @@ else We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ -#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) +#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_sys_file_offset_bits=no; break fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _FILE_OFFSET_BITS 64 @@ -7094,43 +8044,43 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ -#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) +#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_sys_file_offset_bits=64; break fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_sys_file_offset_bits=unknown break done fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5 -$as_echo "$ac_cv_sys_file_offset_bits" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5 +printf "%s\n" "$ac_cv_sys_file_offset_bits" >&6; } case $ac_cv_sys_file_offset_bits in #( no | unknown) ;; *) -cat >>confdefs.h <<_ACEOF -#define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits -_ACEOF +printf "%s\n" "#define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits" >>confdefs.h ;; esac rm -rf conftest* if test $ac_cv_sys_file_offset_bits = unknown; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5
-$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; } -if ${ac_cv_sys_large_files+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5
+printf %s "checking for _LARGE_FILES value needed for large files... " >&6; } +if test ${ac_cv_sys_large_files+y} +then :
- printf %s "(cached) " >&6
+else $as_nop while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -7139,22 +8089,23 @@ else We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ -#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) +#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_sys_large_files=no; break fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _LARGE_FILES 1 @@ -7163,559 +8114,1262 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ -#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) +#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_sys_large_files=1; break fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_sys_large_files=unknown break done fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5 -$as_echo "$ac_cv_sys_large_files" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5 +printf "%s\n" "$ac_cv_sys_large_files" >&6; } case $ac_cv_sys_large_files in #( no | unknown) ;; *) -cat >>confdefs.h <<_ACEOF -#define _LARGE_FILES $ac_cv_sys_large_files -_ACEOF +printf "%s\n" "#define _LARGE_FILES $ac_cv_sys_large_files" >>confdefs.h ;; esac rm -rf conftest* fi +fi
+ac_header= ac_cache= +for ac_item in $ac_header_c_list +do
- if test $ac_cache; then
- ac_fn_c_check_header_compile "$LINENO" $ac_header ac_cv_header_$ac_cache "$ac_includes_default"
- if eval test "x$ac_cv_header_$ac_cache" = xyes; then
printf "%s\n" "#define $ac_item 1" >> confdefs.h
- fi
- ac_header= ac_cache=
- elif test $ac_header; then
- ac_cache=$ac_item
- else
- ac_header=$ac_item
- fi
+done
+if test $ac_cv_header_stdlib_h = yes && test $ac_cv_header_string_h = yes +then :
+printf "%s\n" "#define STDC_HEADERS 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "AL/al.h" "ac_cv_header_AL_al_h" "$ac_includes_default" +if test "x$ac_cv_header_AL_al_h" = xyes +then :
- printf "%s\n" "#define HAVE_AL_AL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "ApplicationServices/ApplicationServices.h" "ac_cv_header_ApplicationServices_ApplicationServices_h" "$ac_includes_default" +if test "x$ac_cv_header_ApplicationServices_ApplicationServices_h" = xyes +then :
- printf "%s\n" "#define HAVE_APPLICATIONSERVICES_APPLICATIONSERVICES_H 1" >>confdefs.h
-ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 -$as_echo_n "checking how to run the C preprocessor... " >&6; } -# On Suns, sometimes $CPP names a directory. -if test -n "$CPP" && test -d "$CPP"; then
- CPP=
fi -if test -z "$CPP"; then
- if ${ac_cv_prog_CPP+:} false; then :
- $as_echo_n "(cached) " >&6
-else
# Double quotes because CPP needs to be expanded
- for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
- do
ac_preproc_ok=false
-for ac_c_preproc_warn_flag in '' yes -do
- # Use a header file that comes with gcc, so configuring glibc
- # with a fresh cross-compiler works.
- # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
- # <limits.h> exists even on freestanding compilers.
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp. "Syntax error" is here to catch this case.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */ -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif
Syntax error
-_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : +ac_fn_c_check_header_compile "$LINENO" "CL/cl.h" "ac_cv_header_CL_cl_h" "$ac_includes_default" +if test "x$ac_cv_header_CL_cl_h" = xyes +then :
- printf "%s\n" "#define HAVE_CL_CL_H 1" >>confdefs.h
-else
- # Broken: fails on valid input.
-continue fi -rm -f conftest.err conftest.i conftest.$ac_ext +ac_fn_c_check_header_compile "$LINENO" "Carbon/Carbon.h" "ac_cv_header_Carbon_Carbon_h" "$ac_includes_default" +if test "x$ac_cv_header_Carbon_Carbon_h" = xyes +then :
- printf "%s\n" "#define HAVE_CARBON_CARBON_H 1" >>confdefs.h
- # OK, works on sane cases. Now check whether nonexistent headers
- # can be detected and how.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */ -#include <ac_nonexistent.h> -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then :
- # Broken: success on invalid input.
-continue -else
- # Passes both tests.
-ac_preproc_ok=: -break fi -rm -f conftest.err conftest.i conftest.$ac_ext +ac_fn_c_check_header_compile "$LINENO" "CommonCrypto/CommonCryptor.h" "ac_cv_header_CommonCrypto_CommonCryptor_h" "$ac_includes_default" +if test "x$ac_cv_header_CommonCrypto_CommonCryptor_h" = xyes +then :
- printf "%s\n" "#define HAVE_COMMONCRYPTO_COMMONCRYPTOR_H 1" >>confdefs.h
-done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then :
- break
fi +ac_fn_c_check_header_compile "$LINENO" "CoreAudio/CoreAudio.h" "ac_cv_header_CoreAudio_CoreAudio_h" "$ac_includes_default" +if test "x$ac_cv_header_CoreAudio_CoreAudio_h" = xyes +then :
- printf "%s\n" "#define HAVE_COREAUDIO_COREAUDIO_H 1" >>confdefs.h
- done
- ac_cv_prog_CPP=$CPP
+fi +ac_fn_c_check_header_compile "$LINENO" "DiskArbitration/DiskArbitration.h" "ac_cv_header_DiskArbitration_DiskArbitration_h" "$ac_includes_default" +if test "x$ac_cv_header_DiskArbitration_DiskArbitration_h" = xyes +then :
- printf "%s\n" "#define HAVE_DISKARBITRATION_DISKARBITRATION_H 1" >>confdefs.h
fi
- CPP=$ac_cv_prog_CPP
-else
- ac_cv_prog_CPP=$CPP
+ac_fn_c_check_header_compile "$LINENO" "EGL/egl.h" "ac_cv_header_EGL_egl_h" "$ac_includes_default" +if test "x$ac_cv_header_EGL_egl_h" = xyes +then :
- printf "%s\n" "#define HAVE_EGL_EGL_H 1" >>confdefs.h
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 -$as_echo "$CPP" >&6; } -ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do
- # Use a header file that comes with gcc, so configuring glibc
- # with a fresh cross-compiler works.
- # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
- # <limits.h> exists even on freestanding compilers.
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp. "Syntax error" is here to catch this case.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */ -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif
Syntax error
-_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : +ac_fn_c_check_header_compile "$LINENO" "IOKit/IOKitLib.h" "ac_cv_header_IOKit_IOKitLib_h" "$ac_includes_default" +if test "x$ac_cv_header_IOKit_IOKitLib_h" = xyes +then :
- printf "%s\n" "#define HAVE_IOKIT_IOKITLIB_H 1" >>confdefs.h
-else
- # Broken: fails on valid input.
-continue fi -rm -f conftest.err conftest.i conftest.$ac_ext +ac_fn_c_check_header_compile "$LINENO" "IOKit/hid/IOHIDLib.h" "ac_cv_header_IOKit_hid_IOHIDLib_h" "$ac_includes_default" +if test "x$ac_cv_header_IOKit_hid_IOHIDLib_h" = xyes +then :
- printf "%s\n" "#define HAVE_IOKIT_HID_IOHIDLIB_H 1" >>confdefs.h
- # OK, works on sane cases. Now check whether nonexistent headers
- # can be detected and how.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */ -#include <ac_nonexistent.h> -_ACEOF -if ac_fn_c_try_cpp "$LINENO"; then :
- # Broken: success on invalid input.
-continue -else
- # Passes both tests.
-ac_preproc_ok=: -break fi -rm -f conftest.err conftest.i conftest.$ac_ext +ac_fn_c_check_header_compile "$LINENO" "OpenAL/al.h" "ac_cv_header_OpenAL_al_h" "$ac_includes_default" +if test "x$ac_cv_header_OpenAL_al_h" = xyes +then :
- printf "%s\n" "#define HAVE_OPENAL_AL_H 1" >>confdefs.h
-done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then : +fi +ac_fn_c_check_header_compile "$LINENO" "OpenCL/opencl.h" "ac_cv_header_OpenCL_opencl_h" "$ac_includes_default" +if test "x$ac_cv_header_OpenCL_opencl_h" = xyes +then :
- printf "%s\n" "#define HAVE_OPENCL_OPENCL_H 1" >>confdefs.h
-else
- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5
-$as_echo "$as_me: error: in `$ac_pwd':" >&2;} -as_fn_error $? "C preprocessor "$CPP" fails sanity check -See `config.log' for more details" "$LINENO" 5; } fi +ac_fn_c_check_header_compile "$LINENO" "QuickTime/ImageCompression.h" "ac_cv_header_QuickTime_ImageCompression_h" "$ac_includes_default" +if test "x$ac_cv_header_QuickTime_ImageCompression_h" = xyes +then :
- printf "%s\n" "#define HAVE_QUICKTIME_IMAGECOMPRESSION_H 1" >>confdefs.h
-ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu +fi +ac_fn_c_check_header_compile "$LINENO" "Security/Security.h" "ac_cv_header_Security_Security_h" "$ac_includes_default" +if test "x$ac_cv_header_Security_Security_h" = xyes +then :
- printf "%s\n" "#define HAVE_SECURITY_SECURITY_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "SystemConfiguration/SCDynamicStoreCopyDHCPInfo.h" "ac_cv_header_SystemConfiguration_SCDynamicStoreCopyDHCPInfo_h" "$ac_includes_default" +if test "x$ac_cv_header_SystemConfiguration_SCDynamicStoreCopyDHCPInfo_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYSTEMCONFIGURATION_SCDYNAMICSTORECOPYDHCPINFO_H 1" >>confdefs.h
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 -$as_echo_n "checking for ANSI C header files... " >&6; } -if ${ac_cv_header_stdc+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */ -#include <stdlib.h> -#include <stdarg.h> -#include <string.h> -#include <float.h> +fi +ac_fn_c_check_header_compile "$LINENO" "SystemConfiguration/SCNetworkConfiguration.h" "ac_cv_header_SystemConfiguration_SCNetworkConfiguration_h" "$ac_includes_default" +if test "x$ac_cv_header_SystemConfiguration_SCNetworkConfiguration_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYSTEMCONFIGURATION_SCNETWORKCONFIGURATION_H 1" >>confdefs.h
-int -main () -{ +fi +ac_fn_c_check_header_compile "$LINENO" "alias.h" "ac_cv_header_alias_h" "$ac_includes_default" +if test "x$ac_cv_header_alias_h" = xyes +then :
- printf "%s\n" "#define HAVE_ALIAS_H 1" >>confdefs.h
- ;
- return 0;
-} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then :
- ac_cv_header_stdc=yes
-else
- ac_cv_header_stdc=no
fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_fn_c_check_header_compile "$LINENO" "arpa/inet.h" "ac_cv_header_arpa_inet_h" "$ac_includes_default" +if test "x$ac_cv_header_arpa_inet_h" = xyes +then :
- printf "%s\n" "#define HAVE_ARPA_INET_H 1" >>confdefs.h
-if test $ac_cv_header_stdc = yes; then
- # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */ -#include <string.h> +fi +ac_fn_c_check_header_compile "$LINENO" "arpa/nameser.h" "ac_cv_header_arpa_nameser_h" "$ac_includes_default" +if test "x$ac_cv_header_arpa_nameser_h" = xyes +then :
- printf "%s\n" "#define HAVE_ARPA_NAMESER_H 1" >>confdefs.h
-_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- $EGREP "memchr" >/dev/null 2>&1; then :
+fi +ac_fn_c_check_header_compile "$LINENO" "asm/types.h" "ac_cv_header_asm_types_h" "$ac_includes_default" +if test "x$ac_cv_header_asm_types_h" = xyes +then :
- printf "%s\n" "#define HAVE_ASM_TYPES_H 1" >>confdefs.h
-else
- ac_cv_header_stdc=no
fi -rm -f conftest* +ac_fn_c_check_header_compile "$LINENO" "asm/user.h" "ac_cv_header_asm_user_h" "$ac_includes_default" +if test "x$ac_cv_header_asm_user_h" = xyes +then :
- printf "%s\n" "#define HAVE_ASM_USER_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "dirent.h" "ac_cv_header_dirent_h" "$ac_includes_default" +if test "x$ac_cv_header_dirent_h" = xyes +then :
- printf "%s\n" "#define HAVE_DIRENT_H 1" >>confdefs.h
-if test $ac_cv_header_stdc = yes; then
- # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */ -#include <stdlib.h> +fi +ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default" +if test "x$ac_cv_header_dlfcn_h" = xyes +then :
- printf "%s\n" "#define HAVE_DLFCN_H 1" >>confdefs.h
-_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- $EGREP "free" >/dev/null 2>&1; then :
+fi +ac_fn_c_check_header_compile "$LINENO" "elf.h" "ac_cv_header_elf_h" "$ac_includes_default" +if test "x$ac_cv_header_elf_h" = xyes +then :
- printf "%s\n" "#define HAVE_ELF_H 1" >>confdefs.h
-else
- ac_cv_header_stdc=no
fi -rm -f conftest* +ac_fn_c_check_header_compile "$LINENO" "float.h" "ac_cv_header_float_h" "$ac_includes_default" +if test "x$ac_cv_header_float_h" = xyes +then :
- printf "%s\n" "#define HAVE_FLOAT_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "fnmatch.h" "ac_cv_header_fnmatch_h" "$ac_includes_default" +if test "x$ac_cv_header_fnmatch_h" = xyes +then :
- printf "%s\n" "#define HAVE_FNMATCH_H 1" >>confdefs.h
-if test $ac_cv_header_stdc = yes; then
- # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
- if test "$cross_compiling" = yes; then :
- :
-else
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */ -#include <ctype.h> -#include <stdlib.h> -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \
(('a' <= (c) && (c) <= 'i') \
|| ('j' <= (c) && (c) <= 'r') \
|| ('s' <= (c) && (c) <= 'z'))
-# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif +fi +ac_fn_c_check_header_compile "$LINENO" "getopt.h" "ac_cv_header_getopt_h" "$ac_includes_default" +if test "x$ac_cv_header_getopt_h" = xyes +then :
- printf "%s\n" "#define HAVE_GETOPT_H 1" >>confdefs.h
-#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{
- int i;
- for (i = 0; i < 256; i++)
- if (XOR (islower (i), ISLOWER (i))
- || toupper (i) != TOUPPER (i))
return 2;
- return 0;
-} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : +fi +ac_fn_c_check_header_compile "$LINENO" "gettext-po.h" "ac_cv_header_gettext_po_h" "$ac_includes_default" +if test "x$ac_cv_header_gettext_po_h" = xyes +then :
- printf "%s\n" "#define HAVE_GETTEXT_PO_H 1" >>confdefs.h
-else
- ac_cv_header_stdc=no
fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
- conftest.$ac_objext conftest.beam conftest.$ac_ext
+ac_fn_c_check_header_compile "$LINENO" "grp.h" "ac_cv_header_grp_h" "$ac_includes_default" +if test "x$ac_cv_header_grp_h" = xyes +then :
- printf "%s\n" "#define HAVE_GRP_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "gsm.h" "ac_cv_header_gsm_h" "$ac_includes_default" +if test "x$ac_cv_header_gsm_h" = xyes +then :
- printf "%s\n" "#define HAVE_GSM_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "gsm/gsm.h" "ac_cv_header_gsm_gsm_h" "$ac_includes_default" +if test "x$ac_cv_header_gsm_gsm_h" = xyes +then :
- printf "%s\n" "#define HAVE_GSM_GSM_H 1" >>confdefs.h
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 -$as_echo "$ac_cv_header_stdc" >&6; } -if test $ac_cv_header_stdc = yes; then +ac_fn_c_check_header_compile "$LINENO" "ieeefp.h" "ac_cv_header_ieeefp_h" "$ac_includes_default" +if test "x$ac_cv_header_ieeefp_h" = xyes +then :
- printf "%s\n" "#define HAVE_IEEEFP_H 1" >>confdefs.h
-$as_echo "#define STDC_HEADERS 1" >>confdefs.h +fi +ac_fn_c_check_header_compile "$LINENO" "inet/mib2.h" "ac_cv_header_inet_mib2_h" "$ac_includes_default" +if test "x$ac_cv_header_inet_mib2_h" = xyes +then :
- printf "%s\n" "#define HAVE_INET_MIB2_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "libproc.h" "ac_cv_header_libproc_h" "$ac_includes_default" +if test "x$ac_cv_header_libproc_h" = xyes +then :
- printf "%s\n" "#define HAVE_LIBPROC_H 1" >>confdefs.h
-# On IRIX 5.3, sys/types and inttypes.h are conflicting. -for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
inttypes.h stdint.h unistd.h
-do :
- as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default -" -if eval test "x$"$as_ac_Header"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +fi +ac_fn_c_check_header_compile "$LINENO" "link.h" "ac_cv_header_link_h" "$ac_includes_default" +if test "x$ac_cv_header_link_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINK_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "linux/cdrom.h" "ac_cv_header_linux_cdrom_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_cdrom_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_CDROM_H 1" >>confdefs.h
-done +fi +ac_fn_c_check_header_compile "$LINENO" "linux/filter.h" "ac_cv_header_linux_filter_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_filter_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_FILTER_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "linux/hdreg.h" "ac_cv_header_linux_hdreg_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_hdreg_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_HDREG_H 1" >>confdefs.h
-for ac_header in \
- AL/al.h \
- ApplicationServices/ApplicationServices.h \
- CL/cl.h \
- Carbon/Carbon.h \
- CommonCrypto/CommonCryptor.h \
- CoreAudio/CoreAudio.h \
- DiskArbitration/DiskArbitration.h \
- EGL/egl.h \
- IOKit/IOKitLib.h \
- IOKit/hid/IOHIDLib.h \
- OpenAL/al.h \
- OpenCL/opencl.h \
- QuickTime/ImageCompression.h \
- Security/Security.h \
- SystemConfiguration/SCDynamicStoreCopyDHCPInfo.h \
- SystemConfiguration/SCNetworkConfiguration.h \
- alias.h \
- arpa/inet.h \
- arpa/nameser.h \
- asm/types.h \
- asm/user.h \
- dirent.h \
- dlfcn.h \
- elf.h \
- float.h \
- fnmatch.h \
- getopt.h \
- gettext-po.h \
- grp.h \
- gsm.h \
- gsm/gsm.h \
- ieeefp.h \
- inet/mib2.h \
- libproc.h \
- link.h \
- linux/cdrom.h \
- linux/filter.h \
- linux/hdreg.h \
- linux/hidraw.h \
- linux/input.h \
- linux/ioctl.h \
- linux/joystick.h \
- linux/major.h \
- linux/param.h \
- linux/serial.h \
- linux/types.h \
- linux/ucdrom.h \
- lwp.h \
- mach-o/loader.h \
- mach/mach.h \
- machine/cpu.h \
- machine/sysarch.h \
- mntent.h \
- netdb.h \
- netinet/in.h \
- netinet/in_systm.h \
- netinet/tcp.h \
- netinet/tcp_fsm.h \
- pcap/pcap.h \
- poll.h \
- port.h \
- pthread.h \
- pwd.h \
- sasl/sasl.h \
- sched.h \
- scsi/scsi.h \
- scsi/scsi_ioctl.h \
- scsi/sg.h \
- stdint.h \
- stropts.h \
- sys/attr.h \
- sys/auxv.h \
- sys/cdio.h \
- sys/epoll.h \
- sys/event.h \
- sys/filio.h \
- sys/ioctl.h \
- sys/ipc.h \
- sys/link.h \
- sys/mman.h \
- sys/modem.h \
- sys/msg.h \
- sys/mtio.h \
- sys/param.h \
- sys/poll.h \
- sys/prctl.h \
- sys/protosw.h \
- sys/ptrace.h \
- sys/queue.h \
- sys/random.h \
- sys/resource.h \
- sys/scsiio.h \
- sys/shm.h \
- sys/signal.h \
- sys/socket.h \
- sys/socketvar.h \
- sys/sockio.h \
- sys/statvfs.h \
- sys/strtio.h \
- sys/syscall.h \
- sys/sysinfo.h \
- sys/tihdr.h \
- sys/time.h \
- sys/timeout.h \
- sys/times.h \
- sys/uio.h \
- sys/user.h \
- sys/utsname.h \
- sys/vnode.h \
- sys/wait.h \
- syscall.h \
- termios.h \
- unistd.h \
- utime.h \
- valgrind/memcheck.h \
- valgrind/valgrind.h
+fi +ac_fn_c_check_header_compile "$LINENO" "linux/hidraw.h" "ac_cv_header_linux_hidraw_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_hidraw_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_HIDRAW_H 1" >>confdefs.h
-do :
- as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test "x$"$as_ac_Header"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +fi +ac_fn_c_check_header_compile "$LINENO" "linux/input.h" "ac_cv_header_linux_input_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_input_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_INPUT_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "linux/ioctl.h" "ac_cv_header_linux_ioctl_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_ioctl_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_IOCTL_H 1" >>confdefs.h
-done +fi +ac_fn_c_check_header_compile "$LINENO" "linux/joystick.h" "ac_cv_header_linux_joystick_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_joystick_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_JOYSTICK_H 1" >>confdefs.h
-ac_fn_c_check_header_mongrel "$LINENO" "sys/mkdev.h" "ac_cv_header_sys_mkdev_h" "$ac_includes_default" -if test "x$ac_cv_header_sys_mkdev_h" = xyes; then : +fi +ac_fn_c_check_header_compile "$LINENO" "linux/major.h" "ac_cv_header_linux_major_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_major_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_MAJOR_H 1" >>confdefs.h
-$as_echo "#define MAJOR_IN_MKDEV 1" >>confdefs.h +fi +ac_fn_c_check_header_compile "$LINENO" "linux/param.h" "ac_cv_header_linux_param_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_param_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_PARAM_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "linux/serial.h" "ac_cv_header_linux_serial_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_serial_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_SERIAL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "linux/types.h" "ac_cv_header_linux_types_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_types_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_TYPES_H 1" >>confdefs.h
-if test $ac_cv_header_sys_mkdev_h = no; then
- ac_fn_c_check_header_mongrel "$LINENO" "sys/sysmacros.h" "ac_cv_header_sys_sysmacros_h" "$ac_includes_default"
-if test "x$ac_cv_header_sys_sysmacros_h" = xyes; then : +fi +ac_fn_c_check_header_compile "$LINENO" "linux/ucdrom.h" "ac_cv_header_linux_ucdrom_h" "$ac_includes_default" +if test "x$ac_cv_header_linux_ucdrom_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_UCDROM_H 1" >>confdefs.h
-$as_echo "#define MAJOR_IN_SYSMACROS 1" >>confdefs.h +fi +ac_fn_c_check_header_compile "$LINENO" "lwp.h" "ac_cv_header_lwp_h" "$ac_includes_default" +if test "x$ac_cv_header_lwp_h" = xyes +then :
- printf "%s\n" "#define HAVE_LWP_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "mach-o/loader.h" "ac_cv_header_mach_o_loader_h" "$ac_includes_default" +if test "x$ac_cv_header_mach_o_loader_h" = xyes +then :
- printf "%s\n" "#define HAVE_MACH_O_LOADER_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "mach/mach.h" "ac_cv_header_mach_mach_h" "$ac_includes_default" +if test "x$ac_cv_header_mach_mach_h" = xyes +then :
- printf "%s\n" "#define HAVE_MACH_MACH_H 1" >>confdefs.h
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat file-mode macros are broken" >&5 -$as_echo_n "checking whether stat file-mode macros are broken... " >&6; } -if ${ac_cv_header_stat_broken+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */ -#include <sys/types.h> -#include <sys/stat.h> +ac_fn_c_check_header_compile "$LINENO" "machine/cpu.h" "ac_cv_header_machine_cpu_h" "$ac_includes_default" +if test "x$ac_cv_header_machine_cpu_h" = xyes +then :
- printf "%s\n" "#define HAVE_MACHINE_CPU_H 1" >>confdefs.h
-#if defined S_ISBLK && defined S_IFDIR -extern char c1[S_ISBLK (S_IFDIR) ? -1 : 1]; -#endif +fi +ac_fn_c_check_header_compile "$LINENO" "machine/sysarch.h" "ac_cv_header_machine_sysarch_h" "$ac_includes_default" +if test "x$ac_cv_header_machine_sysarch_h" = xyes +then :
- printf "%s\n" "#define HAVE_MACHINE_SYSARCH_H 1" >>confdefs.h
-#if defined S_ISBLK && defined S_IFCHR -extern char c2[S_ISBLK (S_IFCHR) ? -1 : 1]; -#endif +fi +ac_fn_c_check_header_compile "$LINENO" "mntent.h" "ac_cv_header_mntent_h" "$ac_includes_default" +if test "x$ac_cv_header_mntent_h" = xyes +then :
- printf "%s\n" "#define HAVE_MNTENT_H 1" >>confdefs.h
-#if defined S_ISLNK && defined S_IFREG -extern char c3[S_ISLNK (S_IFREG) ? -1 : 1]; -#endif +fi +ac_fn_c_check_header_compile "$LINENO" "netdb.h" "ac_cv_header_netdb_h" "$ac_includes_default" +if test "x$ac_cv_header_netdb_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETDB_H 1" >>confdefs.h
-#if defined S_ISSOCK && defined S_IFREG -extern char c4[S_ISSOCK (S_IFREG) ? -1 : 1]; -#endif +fi +ac_fn_c_check_header_compile "$LINENO" "netinet/in.h" "ac_cv_header_netinet_in_h" "$ac_includes_default" +if test "x$ac_cv_header_netinet_in_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETINET_IN_H 1" >>confdefs.h
-_ACEOF -if ac_fn_c_try_compile "$LINENO"; then :
- ac_cv_header_stat_broken=no
-else
- ac_cv_header_stat_broken=yes
fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_fn_c_check_header_compile "$LINENO" "netinet/in_systm.h" "ac_cv_header_netinet_in_systm_h" "$ac_includes_default" +if test "x$ac_cv_header_netinet_in_systm_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETINET_IN_SYSTM_H 1" >>confdefs.h
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stat_broken" >&5 -$as_echo "$ac_cv_header_stat_broken" >&6; } -if test $ac_cv_header_stat_broken = yes; then +ac_fn_c_check_header_compile "$LINENO" "netinet/tcp.h" "ac_cv_header_netinet_tcp_h" "$ac_includes_default" +if test "x$ac_cv_header_netinet_tcp_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETINET_TCP_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "netinet/tcp_fsm.h" "ac_cv_header_netinet_tcp_fsm_h" "$ac_includes_default" +if test "x$ac_cv_header_netinet_tcp_fsm_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETINET_TCP_FSM_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "pcap/pcap.h" "ac_cv_header_pcap_pcap_h" "$ac_includes_default" +if test "x$ac_cv_header_pcap_pcap_h" = xyes +then :
- printf "%s\n" "#define HAVE_PCAP_PCAP_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "poll.h" "ac_cv_header_poll_h" "$ac_includes_default" +if test "x$ac_cv_header_poll_h" = xyes +then :
- printf "%s\n" "#define HAVE_POLL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "port.h" "ac_cv_header_port_h" "$ac_includes_default" +if test "x$ac_cv_header_port_h" = xyes +then :
- printf "%s\n" "#define HAVE_PORT_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "pthread.h" "ac_cv_header_pthread_h" "$ac_includes_default" +if test "x$ac_cv_header_pthread_h" = xyes +then :
- printf "%s\n" "#define HAVE_PTHREAD_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "pwd.h" "ac_cv_header_pwd_h" "$ac_includes_default" +if test "x$ac_cv_header_pwd_h" = xyes +then :
- printf "%s\n" "#define HAVE_PWD_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sasl/sasl.h" "ac_cv_header_sasl_sasl_h" "$ac_includes_default" +if test "x$ac_cv_header_sasl_sasl_h" = xyes +then :
- printf "%s\n" "#define HAVE_SASL_SASL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sched.h" "ac_cv_header_sched_h" "$ac_includes_default" +if test "x$ac_cv_header_sched_h" = xyes +then :
- printf "%s\n" "#define HAVE_SCHED_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "scsi/scsi.h" "ac_cv_header_scsi_scsi_h" "$ac_includes_default" +if test "x$ac_cv_header_scsi_scsi_h" = xyes +then :
- printf "%s\n" "#define HAVE_SCSI_SCSI_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "scsi/scsi_ioctl.h" "ac_cv_header_scsi_scsi_ioctl_h" "$ac_includes_default" +if test "x$ac_cv_header_scsi_scsi_ioctl_h" = xyes +then :
- printf "%s\n" "#define HAVE_SCSI_SCSI_IOCTL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "scsi/sg.h" "ac_cv_header_scsi_sg_h" "$ac_includes_default" +if test "x$ac_cv_header_scsi_sg_h" = xyes +then :
- printf "%s\n" "#define HAVE_SCSI_SG_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "stdint.h" "ac_cv_header_stdint_h" "$ac_includes_default" +if test "x$ac_cv_header_stdint_h" = xyes +then :
- printf "%s\n" "#define HAVE_STDINT_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "stropts.h" "ac_cv_header_stropts_h" "$ac_includes_default" +if test "x$ac_cv_header_stropts_h" = xyes +then :
- printf "%s\n" "#define HAVE_STROPTS_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/attr.h" "ac_cv_header_sys_attr_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_attr_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_ATTR_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/auxv.h" "ac_cv_header_sys_auxv_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_auxv_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_AUXV_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/cdio.h" "ac_cv_header_sys_cdio_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_cdio_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_CDIO_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/epoll.h" "ac_cv_header_sys_epoll_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_epoll_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_EPOLL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/event.h" "ac_cv_header_sys_event_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_event_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_EVENT_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/filio.h" "ac_cv_header_sys_filio_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_filio_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_FILIO_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/ioctl.h" "ac_cv_header_sys_ioctl_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_ioctl_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_IOCTL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/ipc.h" "ac_cv_header_sys_ipc_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_ipc_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_IPC_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/link.h" "ac_cv_header_sys_link_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_link_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_LINK_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/mman.h" "ac_cv_header_sys_mman_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_mman_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_MMAN_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/modem.h" "ac_cv_header_sys_modem_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_modem_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_MODEM_H 1" >>confdefs.h
-$as_echo "#define STAT_MACROS_BROKEN 1" >>confdefs.h +fi +ac_fn_c_check_header_compile "$LINENO" "sys/msg.h" "ac_cv_header_sys_msg_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_msg_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_MSG_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/mtio.h" "ac_cv_header_sys_mtio_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_mtio_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_MTIO_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/param.h" "ac_cv_header_sys_param_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_param_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_PARAM_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/poll.h" "ac_cv_header_sys_poll_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_poll_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_POLL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/prctl.h" "ac_cv_header_sys_prctl_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_prctl_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_PRCTL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/protosw.h" "ac_cv_header_sys_protosw_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_protosw_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_PROTOSW_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/ptrace.h" "ac_cv_header_sys_ptrace_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_ptrace_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_PTRACE_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/queue.h" "ac_cv_header_sys_queue_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_queue_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_QUEUE_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/random.h" "ac_cv_header_sys_random_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_random_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_RANDOM_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/resource.h" "ac_cv_header_sys_resource_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_resource_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_RESOURCE_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/scsiio.h" "ac_cv_header_sys_scsiio_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_scsiio_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_SCSIIO_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/shm.h" "ac_cv_header_sys_shm_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_shm_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_SHM_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/signal.h" "ac_cv_header_sys_signal_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_signal_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_SIGNAL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/socket.h" "ac_cv_header_sys_socket_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_socket_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_SOCKET_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/socketvar.h" "ac_cv_header_sys_socketvar_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_socketvar_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_SOCKETVAR_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/sockio.h" "ac_cv_header_sys_sockio_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_sockio_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_SOCKIO_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/statvfs.h" "ac_cv_header_sys_statvfs_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_statvfs_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_STATVFS_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/strtio.h" "ac_cv_header_sys_strtio_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_strtio_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_STRTIO_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/syscall.h" "ac_cv_header_sys_syscall_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_syscall_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_SYSCALL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/sysinfo.h" "ac_cv_header_sys_sysinfo_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_sysinfo_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_SYSINFO_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/tihdr.h" "ac_cv_header_sys_tihdr_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_tihdr_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_TIHDR_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/time.h" "ac_cv_header_sys_time_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_time_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_TIME_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/timeout.h" "ac_cv_header_sys_timeout_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_timeout_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_TIMEOUT_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/times.h" "ac_cv_header_sys_times_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_times_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_TIMES_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/uio.h" "ac_cv_header_sys_uio_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_uio_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_UIO_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/user.h" "ac_cv_header_sys_user_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_user_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_USER_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/utsname.h" "ac_cv_header_sys_utsname_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_utsname_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_UTSNAME_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/vnode.h" "ac_cv_header_sys_vnode_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_vnode_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_VNODE_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/wait.h" "ac_cv_header_sys_wait_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_wait_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_WAIT_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "syscall.h" "ac_cv_header_syscall_h" "$ac_includes_default" +if test "x$ac_cv_header_syscall_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYSCALL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "termios.h" "ac_cv_header_termios_h" "$ac_includes_default" +if test "x$ac_cv_header_termios_h" = xyes +then :
- printf "%s\n" "#define HAVE_TERMIOS_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "unistd.h" "ac_cv_header_unistd_h" "$ac_includes_default" +if test "x$ac_cv_header_unistd_h" = xyes +then :
- printf "%s\n" "#define HAVE_UNISTD_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "utime.h" "ac_cv_header_utime_h" "$ac_includes_default" +if test "x$ac_cv_header_utime_h" = xyes +then :
- printf "%s\n" "#define HAVE_UTIME_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "valgrind/memcheck.h" "ac_cv_header_valgrind_memcheck_h" "$ac_includes_default" +if test "x$ac_cv_header_valgrind_memcheck_h" = xyes +then :
- printf "%s\n" "#define HAVE_VALGRIND_MEMCHECK_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "valgrind/valgrind.h" "ac_cv_header_valgrind_valgrind_h" "$ac_includes_default" +if test "x$ac_cv_header_valgrind_valgrind_h" = xyes +then :
- printf "%s\n" "#define HAVE_VALGRIND_VALGRIND_H 1" >>confdefs.h
+fi
+ac_fn_c_check_header_compile "$LINENO" "sys/mkdev.h" "ac_cv_header_sys_mkdev_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_mkdev_h" = xyes +then :
+printf "%s\n" "#define MAJOR_IN_MKDEV 1" >>confdefs.h
+fi
+if test $ac_cv_header_sys_mkdev_h = no; then
- ac_fn_c_check_header_compile "$LINENO" "sys/sysmacros.h" "ac_cv_header_sys_sysmacros_h" "$ac_includes_default"
+if test "x$ac_cv_header_sys_sysmacros_h" = xyes +then :
+printf "%s\n" "#define MAJOR_IN_SYSMACROS 1" >>confdefs.h
+fi
+fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether stat file-mode macros are broken" >&5 +printf %s "checking whether stat file-mode macros are broken... " >&6; } +if test ${ac_cv_header_stat_broken+y} +then :
- printf %s "(cached) " >&6
+else $as_nop
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */ +#include <sys/types.h> +#include <sys/stat.h>
+#if defined S_ISBLK && defined S_IFDIR +extern char c1[S_ISBLK (S_IFDIR) ? -1 : 1]; +#endif
+#if defined S_ISBLK && defined S_IFCHR +extern char c2[S_ISBLK (S_IFCHR) ? -1 : 1]; +#endif
+#if defined S_ISLNK && defined S_IFREG +extern char c3[S_ISLNK (S_IFREG) ? -1 : 1]; +#endif
+#if defined S_ISSOCK && defined S_IFREG +extern char c4[S_ISSOCK (S_IFREG) ? -1 : 1]; +#endif
+_ACEOF +if ac_fn_c_try_compile "$LINENO" +then :
- ac_cv_header_stat_broken=no
+else $as_nop
- ac_cv_header_stat_broken=yes
+fi +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stat_broken" >&5 +printf "%s\n" "$ac_cv_header_stat_broken" >&6; } +if test $ac_cv_header_stat_broken = yes; then
+printf "%s\n" "#define STAT_MACROS_BROKEN 1" >>confdefs.h
+fi
+ac_fn_c_check_header_compile "$LINENO" "sys/conf.h" "ac_cv_header_sys_conf_h" "#include <sys/types.h>
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
+" +if test "x$ac_cv_header_sys_conf_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_CONF_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/mount.h" "ac_cv_header_sys_mount_h" "#include <sys/types.h>
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
+" +if test "x$ac_cv_header_sys_mount_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_MOUNT_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/statfs.h" "ac_cv_header_sys_statfs_h" "#include <sys/types.h>
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
+" +if test "x$ac_cv_header_sys_statfs_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_STATFS_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/user.h" "ac_cv_header_sys_user_h" "#include <sys/types.h>
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
+" +if test "x$ac_cv_header_sys_user_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_USER_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "sys/vfs.h" "ac_cv_header_sys_vfs_h" "#include <sys/types.h>
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
+" +if test "x$ac_cv_header_sys_vfs_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_VFS_H 1" >>confdefs.h
+fi
+saved_sysctl_h_CFLAGS=$CFLAGS +test "x${GCC}" != xyes || CFLAGS="$CFLAGS -Werror" +ac_fn_c_check_header_compile "$LINENO" "sys/sysctl.h" "ac_cv_header_sys_sysctl_h" "#include <sys/types.h>
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
+" +if test "x$ac_cv_header_sys_sysctl_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_SYSCTL_H 1" >>confdefs.h
+fi
+CFLAGS=$saved_sysctl_h_CFLAGS
+ac_fn_c_check_header_compile "$LINENO" "netinet/ip.h" "ac_cv_header_netinet_ip_h" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_NET_ROUTE_H
# include <net/route.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NET_IF_H
# include <net/if.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h>
#endif
+" +if test "x$ac_cv_header_netinet_ip_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETINET_IP_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "net/if.h" "ac_cv_header_net_if_h" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_NET_ROUTE_H
# include <net/route.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NET_IF_H
# include <net/if.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h>
#endif
+" +if test "x$ac_cv_header_net_if_h" = xyes +then :
- printf "%s\n" "#define HAVE_NET_IF_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "net/if_arp.h" "ac_cv_header_net_if_arp_h" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_NET_ROUTE_H
# include <net/route.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NET_IF_H
# include <net/if.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h>
#endif
+" +if test "x$ac_cv_header_net_if_arp_h" = xyes +then :
- printf "%s\n" "#define HAVE_NET_IF_ARP_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "net/if_dl.h" "ac_cv_header_net_if_dl_h" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_NET_ROUTE_H
# include <net/route.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NET_IF_H
# include <net/if.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h>
#endif
+" +if test "x$ac_cv_header_net_if_dl_h" = xyes +then :
- printf "%s\n" "#define HAVE_NET_IF_DL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "net/if_types.h" "ac_cv_header_net_if_types_h" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_NET_ROUTE_H
# include <net/route.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NET_IF_H
# include <net/if.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h>
#endif
+" +if test "x$ac_cv_header_net_if_types_h" = xyes +then :
- printf "%s\n" "#define HAVE_NET_IF_TYPES_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "net/route.h" "ac_cv_header_net_route_h" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_NET_ROUTE_H
# include <net/route.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NET_IF_H
# include <net/if.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h>
#endif
+" +if test "x$ac_cv_header_net_route_h" = xyes +then :
- printf "%s\n" "#define HAVE_NET_ROUTE_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "netinet/if_ether.h" "ac_cv_header_netinet_if_ether_h" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_NET_ROUTE_H
# include <net/route.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NET_IF_H
# include <net/if.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h>
#endif
+" +if test "x$ac_cv_header_netinet_if_ether_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETINET_IF_ETHER_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "netinet/if_inarp.h" "ac_cv_header_netinet_if_inarp_h" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_NET_ROUTE_H
# include <net/route.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NET_IF_H
# include <net/if.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h>
#endif
+" +if test "x$ac_cv_header_netinet_if_inarp_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETINET_IF_INARP_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "netinet/in_pcb.h" "ac_cv_header_netinet_in_pcb_h" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_NET_ROUTE_H
# include <net/route.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NET_IF_H
# include <net/if.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h>
#endif
+" +if test "x$ac_cv_header_netinet_in_pcb_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETINET_IN_PCB_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "netinet/ip_icmp.h" "ac_cv_header_netinet_ip_icmp_h" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_NET_ROUTE_H
# include <net/route.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NET_IF_H
# include <net/if.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h>
#endif
+" +if test "x$ac_cv_header_netinet_ip_icmp_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETINET_IP_ICMP_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "netinet/ip_var.h" "ac_cv_header_netinet_ip_var_h" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_NET_ROUTE_H
# include <net/route.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NET_IF_H
# include <net/if.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h>
#endif
+" +if test "x$ac_cv_header_netinet_ip_var_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETINET_IP_VAR_H 1" >>confdefs.h
fi
-for ac_header in sys/conf.h sys/mount.h sys/statfs.h sys/user.h sys/vfs.h -do :
- as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#include <sys/types.h>
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
+ac_fn_c_check_header_compile "$LINENO" "netinet/udp.h" "ac_cv_header_netinet_udp_h" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_NET_ROUTE_H
# include <net/route.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NET_IF_H
# include <net/if.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h> #endif
" -if eval test "x$"$as_ac_Header"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +if test "x$ac_cv_header_netinet_udp_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETINET_UDP_H 1" >>confdefs.h
fi
-done
-saved_sysctl_h_CFLAGS=$CFLAGS -test "x${GCC}" != xyes || CFLAGS="$CFLAGS -Werror" -for ac_header in sys/sysctl.h -do :
- ac_fn_c_check_header_compile "$LINENO" "sys/sysctl.h" "ac_cv_header_sys_sysctl_h" "#include <sys/types.h>
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
+ac_fn_c_check_header_compile "$LINENO" "netipx/ipx.h" "ac_cv_header_netipx_ipx_h" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_NET_ROUTE_H
# include <net/route.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NET_IF_H
# include <net/if.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h> #endif
" -if test "x$ac_cv_header_sys_sysctl_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_SYS_SYSCTL_H 1 -_ACEOF +if test "x$ac_cv_header_netipx_ipx_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETIPX_IPX_H 1" >>confdefs.h
fi
-done
-CFLAGS=$saved_sysctl_h_CFLAGS
-for ac_header in \
- netinet/ip.h \
- net/if.h \
- net/if_arp.h \
- net/if_dl.h \
- net/if_types.h \
- net/route.h \
- netinet/if_ether.h \
- netinet/if_inarp.h \
- netinet/in_pcb.h \
- netinet/ip_icmp.h \
- netinet/ip_var.h \
- netinet/udp.h \
- netipx/ipx.h \
- sys/un.h \
-do :
- as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#include <sys/types.h> +ac_fn_c_check_header_compile "$LINENO" "sys/un.h" "ac_cv_header_sys_un_h" "#include <sys/types.h> #ifdef HAVE_SYS_SOCKET_H # include <sys/socket.h> #endif @@ -7738,20 +9392,57 @@ ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#include <s # include <netinet/ip.h> #endif " -if eval test "x$"$as_ac_Header"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +if test "x$ac_cv_header_sys_un_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_UN_H 1" >>confdefs.h
fi
-done
+ac_fn_c_check_header_compile "$LINENO" "netinet/tcp_timer.h" "ac_cv_header_netinet_tcp_timer_h" "#include <sys/types.h>
#ifdef HAVE_ALIAS_H
# include <alias.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_SYS_TIMEOUT_H
# include <sys/timeout.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h>
#endif
#ifdef HAVE_NETINET_IP_VAR_H
# include <netinet/ip_var.h>
#endif
#ifdef HAVE_NETINET_IP_ICMP_H
# include <netinet/ip_icmp.h>
#endif
#ifdef HAVE_NETINET_UDP_H
# include <netinet/udp.h>
#endif
#ifdef HAVE_NETINET_TCP_H
# include <netinet/tcp.h>
#endif
#ifdef HAVE_NETINET_TCP_TIMER_H
#include <netinet/tcp_timer.h>
#endif
+" +if test "x$ac_cv_header_netinet_tcp_timer_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETINET_TCP_TIMER_H 1" >>confdefs.h
-for ac_header in netinet/tcp_timer.h netinet/udp_var.h netinet/icmp_var.h netinet/tcp_var.h -do :
- as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#include <sys/types.h> +fi +ac_fn_c_check_header_compile "$LINENO" "netinet/udp_var.h" "ac_cv_header_netinet_udp_var_h" "#include <sys/types.h> #ifdef HAVE_ALIAS_H # include <alias.h> #endif @@ -7789,20 +9480,100 @@ ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#include <s #include <netinet/tcp_timer.h> #endif " -if eval test "x$"$as_ac_Header"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +if test "x$ac_cv_header_netinet_udp_var_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETINET_UDP_VAR_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "netinet/icmp_var.h" "ac_cv_header_netinet_icmp_var_h" "#include <sys/types.h>
#ifdef HAVE_ALIAS_H
# include <alias.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_SYS_TIMEOUT_H
# include <sys/timeout.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h>
#endif
#ifdef HAVE_NETINET_IP_VAR_H
# include <netinet/ip_var.h>
#endif
#ifdef HAVE_NETINET_IP_ICMP_H
# include <netinet/ip_icmp.h>
#endif
#ifdef HAVE_NETINET_UDP_H
# include <netinet/udp.h>
#endif
#ifdef HAVE_NETINET_TCP_H
# include <netinet/tcp.h>
#endif
#ifdef HAVE_NETINET_TCP_TIMER_H
#include <netinet/tcp_timer.h>
#endif
+" +if test "x$ac_cv_header_netinet_icmp_var_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETINET_ICMP_VAR_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "netinet/tcp_var.h" "ac_cv_header_netinet_tcp_var_h" "#include <sys/types.h>
#ifdef HAVE_ALIAS_H
# include <alias.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_SYS_SOCKETVAR_H
# include <sys/socketvar.h>
#endif
#ifdef HAVE_SYS_TIMEOUT_H
# include <sys/timeout.h>
#endif
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
#endif
#ifdef HAVE_NETINET_IP_H
# include <netinet/ip.h>
#endif
#ifdef HAVE_NETINET_IP_VAR_H
# include <netinet/ip_var.h>
#endif
#ifdef HAVE_NETINET_IP_ICMP_H
# include <netinet/ip_icmp.h>
#endif
#ifdef HAVE_NETINET_UDP_H
# include <netinet/udp.h>
#endif
#ifdef HAVE_NETINET_TCP_H
# include <netinet/tcp.h>
#endif
#ifdef HAVE_NETINET_TCP_TIMER_H
#include <netinet/tcp_timer.h>
#endif
+" +if test "x$ac_cv_header_netinet_tcp_var_h" = xyes +then :
- printf "%s\n" "#define HAVE_NETINET_TCP_VAR_H 1" >>confdefs.h
-done +fi
-for ac_header in linux/ipx.h linux/irda.h linux/rtnetlink.h -do :
- as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#include <sys/types.h> +ac_fn_c_check_header_compile "$LINENO" "linux/ipx.h" "ac_cv_header_linux_ipx_h" "#include <sys/types.h> #ifdef HAVE_ASM_TYPES_H # include <asm/types.h> #endif @@ -7813,19 +9584,46 @@ ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#include <s # include <linux/types.h> #endif " -if eval test "x$"$as_ac_Header"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +if test "x$ac_cv_header_linux_ipx_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_IPX_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "linux/irda.h" "ac_cv_header_linux_irda_h" "#include <sys/types.h>
#ifdef HAVE_ASM_TYPES_H
# include <asm/types.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_LINUX_TYPES_H
# include <linux/types.h>
#endif
+" +if test "x$ac_cv_header_linux_irda_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_IRDA_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "linux/rtnetlink.h" "ac_cv_header_linux_rtnetlink_h" "#include <sys/types.h>
#ifdef HAVE_ASM_TYPES_H
# include <asm/types.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_LINUX_TYPES_H
# include <linux/types.h>
#endif
+" +if test "x$ac_cv_header_linux_rtnetlink_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_RTNETLINK_H 1" >>confdefs.h
-done +fi
-for ac_header in resolv.h -do :
- ac_fn_c_check_header_compile "$LINENO" "resolv.h" "ac_cv_header_resolv_h" "#include <sys/types.h>
+ac_fn_c_check_header_compile "$LINENO" "resolv.h" "ac_cv_header_resolv_h" "#include <sys/types.h> #ifdef HAVE_SYS_SOCKET_H # include <sys/socket.h> #endif @@ -7836,80 +9634,55 @@ do : # include <arpa/nameser.h> #endif " -if test "x$ac_cv_header_resolv_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_RESOLV_H 1 -_ACEOF +if test "x$ac_cv_header_resolv_h" = xyes +then :
- printf "%s\n" "#define HAVE_RESOLV_H 1" >>confdefs.h
fi
-done
-for ac_header in ifaddrs.h -do :
- ac_fn_c_check_header_compile "$LINENO" "ifaddrs.h" "ac_cv_header_ifaddrs_h" "#include <sys/types.h>
+ac_fn_c_check_header_compile "$LINENO" "ifaddrs.h" "ac_cv_header_ifaddrs_h" "#include <sys/types.h> " -if test "x$ac_cv_header_ifaddrs_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_IFADDRS_H 1 -_ACEOF +if test "x$ac_cv_header_ifaddrs_h" = xyes +then :
- printf "%s\n" "#define HAVE_IFADDRS_H 1" >>confdefs.h
fi
-done
-for ac_header in sys/ucontext.h -do :
- ac_fn_c_check_header_compile "$LINENO" "sys/ucontext.h" "ac_cv_header_sys_ucontext_h" "#include <signal.h>
+ac_fn_c_check_header_compile "$LINENO" "sys/ucontext.h" "ac_cv_header_sys_ucontext_h" "#include <signal.h> " -if test "x$ac_cv_header_sys_ucontext_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_SYS_UCONTEXT_H 1 -_ACEOF +if test "x$ac_cv_header_sys_ucontext_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_UCONTEXT_H 1" >>confdefs.h
fi
-done
-for ac_header in sys/thr.h -do :
- ac_fn_c_check_header_compile "$LINENO" "sys/thr.h" "ac_cv_header_sys_thr_h" "#include <sys/types.h>
+ac_fn_c_check_header_compile "$LINENO" "sys/thr.h" "ac_cv_header_sys_thr_h" "#include <sys/types.h> #ifdef HAVE_SYS_UCONTEXT_H #include <sys/ucontext.h> #endif " -if test "x$ac_cv_header_sys_thr_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_SYS_THR_H 1 -_ACEOF +if test "x$ac_cv_header_sys_thr_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_THR_H 1" >>confdefs.h
fi
-done
-for ac_header in pthread_np.h -do :
- ac_fn_c_check_header_compile "$LINENO" "pthread_np.h" "ac_cv_header_pthread_np_h" "#ifdef HAVE_PTHREAD_H
+ac_fn_c_check_header_compile "$LINENO" "pthread_np.h" "ac_cv_header_pthread_np_h" "#ifdef HAVE_PTHREAD_H #include <pthread.h> #endif " -if test "x$ac_cv_header_pthread_np_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_PTHREAD_NP_H 1 -_ACEOF +if test "x$ac_cv_header_pthread_np_h" = xyes +then :
- printf "%s\n" "#define HAVE_PTHREAD_NP_H 1" >>confdefs.h
fi
-done
-for ac_header in linux/videodev2.h -do :
- ac_fn_c_check_header_compile "$LINENO" "linux/videodev2.h" "ac_cv_header_linux_videodev2_h" "#ifdef HAVE_SYS_TIME_H
+ac_fn_c_check_header_compile "$LINENO" "linux/videodev2.h" "ac_cv_header_linux_videodev2_h" "#ifdef HAVE_SYS_TIME_H #include <sys/time.h> #endif #include <sys/types.h> @@ -7917,19 +9690,14 @@ do : #include <asm/types.h> #endif " -if test "x$ac_cv_header_linux_videodev2_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_LINUX_VIDEODEV2_H 1 -_ACEOF +if test "x$ac_cv_header_linux_videodev2_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_VIDEODEV2_H 1" >>confdefs.h
fi
-done
-for ac_header in libprocstat.h -do :
- ac_fn_c_check_header_compile "$LINENO" "libprocstat.h" "ac_cv_header_libprocstat_h" "#ifdef HAVE_SYS_PARAM_H
+ac_fn_c_check_header_compile "$LINENO" "libprocstat.h" "ac_cv_header_libprocstat_h" "#ifdef HAVE_SYS_PARAM_H #include <sys/param.h> #endif #ifdef HAVE_SYS_QUEUE_H @@ -7939,15 +9707,12 @@ do : #include <sys/socket.h> #endif " -if test "x$ac_cv_header_libprocstat_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_LIBPROCSTAT_H 1 -_ACEOF +if test "x$ac_cv_header_libprocstat_h" = xyes +then :
- printf "%s\n" "#define HAVE_LIBPROCSTAT_H 1" >>confdefs.h
fi
-done
DLLFLAGS="-D_REENTRANT" @@ -7968,11 +9733,12 @@ LIBEXT="so" DLLEXT=".so" # Extract the first word of "ldd", so it can be a program name with args. set dummy ldd; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_LDD+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_path_LDD+y} +then :
- printf %s "(cached) " >&6
+else $as_nop case $LDD in [\/]* | ?:[\/]*) ac_cv_path_LDD="$LDD" # Let the user override the test with a path. @@ -7983,11 +9749,15 @@ as_dummy="/sbin:/usr/sbin:$PATH" for as_dir in $as_dummy do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- ac_cv_path_LDD="$as_dir/$ac_word$ac_exec_ext"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
- ac_cv_path_LDD="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -8000,22 +9770,23 @@ esac fi LDD=$ac_cv_path_LDD if test -n "$LDD"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LDD" >&5
-$as_echo "$LDD" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LDD" >&5
+printf "%s\n" "$LDD" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_OTOOL+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_OTOOL+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. else @@ -8023,11 +9794,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -8038,11 +9813,11 @@ fi fi OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5
-$as_echo "$OTOOL" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5
+printf "%s\n" "$OTOOL" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -8051,11 +9826,12 @@ if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_OTOOL+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_OTOOL+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. else @@ -8063,11 +9839,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -8078,11 +9858,11 @@ fi fi ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5
-$as_echo "$ac_ct_OTOOL" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5
+printf "%s\n" "$ac_ct_OTOOL" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_OTOOL" = x; then @@ -8090,8 +9870,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL=$ac_ct_OTOOL @@ -8103,11 +9883,12 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}readelf", so it can be a program name with args. set dummy ${ac_tool_prefix}readelf; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_READELF+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_READELF+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$READELF"; then ac_cv_prog_READELF="$READELF" # Let the user override the test. else @@ -8115,11 +9896,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_READELF="${ac_tool_prefix}readelf"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -8130,11 +9915,11 @@ fi fi READELF=$ac_cv_prog_READELF if test -n "$READELF"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $READELF" >&5
-$as_echo "$READELF" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $READELF" >&5
+printf "%s\n" "$READELF" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -8143,11 +9928,12 @@ if test -z "$ac_cv_prog_READELF"; then ac_ct_READELF=$READELF # Extract the first word of "readelf", so it can be a program name with args. set dummy readelf; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_READELF+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_READELF+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$ac_ct_READELF"; then ac_cv_prog_ac_ct_READELF="$ac_ct_READELF" # Let the user override the test. else @@ -8155,11 +9941,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_READELF="readelf"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -8170,11 +9960,11 @@ fi fi ac_ct_READELF=$ac_cv_prog_ac_ct_READELF if test -n "$ac_ct_READELF"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_READELF" >&5
-$as_echo "$ac_ct_READELF" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_READELF" >&5
+printf "%s\n" "$ac_ct_READELF" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_READELF" = x; then @@ -8182,8 +9972,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac READELF=$ac_ct_READELF @@ -8208,13 +9998,14 @@ wine_fn_append_file ()
wine_fn_append_rule () {
- $as_echo "$1" >>$wine_rules_file
- printf "%s\n" "$1" >>$wine_rules_file
}
wine_fn_config_makefile () { wine_fn_append_file SUBDIRS $1
- if eval test "x$"$2"" = x"no"; then :
- if eval test "x$"$2"" = x"no"
+then : wine_fn_append_file DISABLED_SUBDIRS $1 fi } @@ -8239,11 +10030,12 @@ case $host_os in if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_DLLTOOL+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_DLLTOOL+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. else @@ -8251,11 +10043,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -8266,11 +10062,11 @@ fi fi DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5
-$as_echo "$DLLTOOL" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5
+printf "%s\n" "$DLLTOOL" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -8279,11 +10075,12 @@ if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_DLLTOOL+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. else @@ -8291,11 +10088,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -8306,11 +10107,11 @@ fi fi ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5
-$as_echo "$ac_ct_DLLTOOL" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5
+printf "%s\n" "$ac_ct_DLLTOOL" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
if test "x$ac_ct_DLLTOOL" = x; then @@ -8318,8 +10119,8 @@ fi else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DLLTOOL=$ac_ct_DLLTOOL @@ -8331,29 +10132,32 @@ fi LIBEXT="dll" DLLEXT="" case $host_cpu in
*i[3456]86*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--disable-stdcall-fixup" >&5
-$as_echo_n "checking whether the compiler supports -Wl,--disable-stdcall-fixup... " >&6; } -if ${ac_cv_cflags__Wl___disable_stdcall_fixup+:} false; then :
- $as_echo_n "(cached) " >&6
-else
*i[3456]86*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--disable-stdcall-fixup" >&5
+printf %s "checking whether the compiler supports -Wl,--disable-stdcall-fixup... " >&6; } +if test ${ac_cv_cflags__Wl___disable_stdcall_fixup+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,--disable-stdcall-fixup" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl___disable_stdcall_fixup=yes -else +else $as_nop ac_cv_cflags__Wl___disable_stdcall_fixup=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___disable_stdcall_fixup" >&5 -$as_echo "$ac_cv_cflags__Wl___disable_stdcall_fixup" >&6; } -if test "x$ac_cv_cflags__Wl___disable_stdcall_fixup" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___disable_stdcall_fixup" >&5 +printf "%s\n" "$ac_cv_cflags__Wl___disable_stdcall_fixup" >&6; } +if test "x$ac_cv_cflags__Wl___disable_stdcall_fixup" = xyes +then : LDDLLFLAGS="-Wl,--disable-stdcall-fixup" fi ;; esac @@ -8379,15 +10183,16 @@ ac_compile='$OBJC -c $OBJCFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$OBJC -o conftest$ac_exeext $OBJCFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_objc_compiler_gnu if test -n "$ac_tool_prefix"; then
- for ac_prog in gcc objcc objc cc CC
- for ac_prog in gcc objcc objc cc CC clang do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_OBJC+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_OBJC+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$OBJC"; then ac_cv_prog_OBJC="$OBJC" # Let the user override the test. else @@ -8395,11 +10200,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_OBJC="$ac_tool_prefix$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -8410,11 +10219,11 @@ fi fi OBJC=$ac_cv_prog_OBJC if test -n "$OBJC"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJC" >&5
-$as_echo "$OBJC" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $OBJC" >&5
+printf "%s\n" "$OBJC" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -8423,15 +10232,16 @@ fi fi if test -z "$OBJC"; then ac_ct_OBJC=$OBJC
- for ac_prog in gcc objcc objc cc CC
- for ac_prog in gcc objcc objc cc CC clang
do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_ac_ct_OBJC+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_OBJC+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$ac_ct_OBJC"; then ac_cv_prog_ac_ct_OBJC="$ac_ct_OBJC" # Let the user override the test. else @@ -8439,11 +10249,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJC="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -8454,11 +10268,11 @@ fi fi ac_ct_OBJC=$ac_cv_prog_ac_ct_OBJC if test -n "$ac_ct_OBJC"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJC" >&5
-$as_echo "$ac_ct_OBJC" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJC" >&5
+printf "%s\n" "$ac_ct_OBJC" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -8470,8 +10284,8 @@ done else case $cross_compiling:$ac_tool_warned in yes:) -{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 -$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OBJC=$ac_ct_OBJC @@ -8479,7 +10293,7 @@ esac fi
# Provide some information about the compiler. -$as_echo "$as_me:${as_lineno-$LINENO}: checking for Objective C compiler version" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for Objective C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do @@ -8489,7 +10303,7 @@ case "(($ac_try" in *) ac_try_echo=$ac_try;; esac eval ac_try_echo=""$as_me:${as_lineno-$LINENO}: $ac_try_echo"" -$as_echo "$ac_try_echo"; } >&5 +printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then @@ -8499,20 +10313,21 @@ $as_echo "$ac_try_echo"; } >&5 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err
- $as_echo "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: $? = $ac_status" >&5 test $ac_status = 0; }
done
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Objective C compiler" >&5 -$as_echo_n "checking whether we are using the GNU Objective C compiler... " >&6; } -if ${ac_cv_objc_compiler_gnu+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU Objective C" >&5 +printf %s "checking whether the compiler supports GNU Objective C... " >&6; } +if test ${ac_cv_objc_compiler_gnu+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) { #ifndef __GNUC__ choke me @@ -8522,29 +10337,33 @@ main () return 0; } _ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : +if ac_fn_objc_try_compile "$LINENO" +then : ac_compiler_gnu=yes -else +else $as_nop ac_compiler_gnu=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_objc_compiler_gnu=$ac_compiler_gnu
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objc_compiler_gnu" >&5 -$as_echo "$ac_cv_objc_compiler_gnu" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objc_compiler_gnu" >&5 +printf "%s\n" "$ac_cv_objc_compiler_gnu" >&6; } +ac_compiler_gnu=$ac_cv_objc_compiler_gnu
if test $ac_compiler_gnu = yes; then GOBJC=yes else GOBJC= fi -ac_test_OBJCFLAGS=${OBJCFLAGS+set} +ac_test_OBJCFLAGS=${OBJCFLAGS+y} ac_save_OBJCFLAGS=$OBJCFLAGS -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $OBJC accepts -g" >&5 -$as_echo_n "checking whether $OBJC accepts -g... " >&6; } -if ${ac_cv_prog_objc_g+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $OBJC accepts -g" >&5 +printf %s "checking whether $OBJC accepts -g... " >&6; } +if test ${ac_cv_prog_objc_g+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_save_objc_werror_flag=$ac_objc_werror_flag ac_objc_werror_flag=yes ac_cv_prog_objc_g=no @@ -8553,57 +10372,60 @@ else /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : +if ac_fn_objc_try_compile "$LINENO" +then : ac_cv_prog_objc_g=yes -else +else $as_nop OBJCFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : +if ac_fn_objc_try_compile "$LINENO" +then :
-else +else $as_nop ac_objc_werror_flag=$ac_save_objc_werror_flag OBJCFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_objc_try_compile "$LINENO"; then : +if ac_fn_objc_try_compile "$LINENO" +then : ac_cv_prog_objc_g=yes fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_objc_werror_flag=$ac_save_objc_werror_flag fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_objc_g" >&5 -$as_echo "$ac_cv_prog_objc_g" >&6; } -if test "$ac_test_OBJCFLAGS" = set; then +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_objc_g" >&5 +printf "%s\n" "$ac_cv_prog_objc_g" >&6; } +if test $ac_test_OBJCFLAGS; then OBJCFLAGS=$ac_save_OBJCFLAGS elif test $ac_cv_prog_objc_g = yes; then if test "$GOBJC" = yes; then @@ -8625,152 +10447,13 @@ ac_link='$OBJC -o conftest$ac_exeext $OBJCFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ ac_compiler_gnu=$ac_cv_objc_compiler_gnu
-ac_ext=m -ac_cpp='$OBJCPP $CPPFLAGS' -ac_compile='$OBJC -c $OBJCFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$OBJC -o conftest$ac_exeext $OBJCFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_objc_compiler_gnu -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the Objective C preprocessor" >&5 -$as_echo_n "checking how to run the Objective C preprocessor... " >&6; } -if test -z "$OBJCPP"; then
- if ${ac_cv_prog_OBJCPP+:} false; then :
- $as_echo_n "(cached) " >&6
-else
# Double quotes because OBJCPP needs to be expanded
- for OBJCPP in "$OBJC -E" "/lib/cpp"
- do
ac_preproc_ok=false
-for ac_objc_preproc_warn_flag in '' yes -do
- # Use a header file that comes with gcc, so configuring glibc
- # with a fresh cross-compiler works.
- # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
- # <limits.h> exists even on freestanding compilers.
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp. "Syntax error" is here to catch this case.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */ -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif
Syntax error
-_ACEOF -if ac_fn_objc_try_cpp "$LINENO"; then :
-else
- # Broken: fails on valid input.
-continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext
- # OK, works on sane cases. Now check whether nonexistent headers
- # can be detected and how.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */ -#include <ac_nonexistent.h> -_ACEOF -if ac_fn_objc_try_cpp "$LINENO"; then :
- # Broken: success on invalid input.
-continue -else
- # Passes both tests.
-ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext
-done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then :
- break
-fi
- done
- ac_cv_prog_OBJCPP=$OBJCPP
-fi
- OBJCPP=$ac_cv_prog_OBJCPP
-else
- ac_cv_prog_OBJCPP=$OBJCPP
-fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJCPP" >&5 -$as_echo "$OBJCPP" >&6; } -ac_preproc_ok=false -for ac_objc_preproc_warn_flag in '' yes -do
- # Use a header file that comes with gcc, so configuring glibc
- # with a fresh cross-compiler works.
- # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
- # <limits.h> exists even on freestanding compilers.
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp. "Syntax error" is here to catch this case.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */ -#ifdef __STDC__ -# include <limits.h> -#else -# include <assert.h> -#endif
Syntax error
-_ACEOF -if ac_fn_objc_try_cpp "$LINENO"; then :
-else
- # Broken: fails on valid input.
-continue -fi -rm -f conftest.err conftest.i conftest.$ac_ext
- # OK, works on sane cases. Now check whether nonexistent headers
- # can be detected and how.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */ -#include <ac_nonexistent.h> -_ACEOF -if ac_fn_objc_try_cpp "$LINENO"; then :
- # Broken: success on invalid input.
-continue -else
- # Passes both tests.
-ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.i conftest.$ac_ext
-done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.i conftest.err conftest.$ac_ext -if $ac_preproc_ok; then :
-else
- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5
-$as_echo "$as_me: error: in `$ac_pwd':" >&2;} -as_fn_error $? "Objective C preprocessor "$OBJCPP" fails sanity check -See `config.log' for more details" "$LINENO" 5; } -fi
-ac_ext=m -ac_cpp='$OBJCPP $CPPFLAGS' -ac_compile='$OBJC -c $OBJCFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$OBJC -o conftest$ac_exeext $OBJCFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_objc_compiler_gnu
-for ac_header in Metal/Metal.h -do :
- ac_fn_objc_check_header_mongrel "$LINENO" "Metal/Metal.h" "ac_cv_header_Metal_Metal_h" "$ac_includes_default"
-if test "x$ac_cv_header_Metal_Metal_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_METAL_METAL_H 1 -_ACEOF +ac_fn_objc_check_header_compile "$LINENO" "Metal/Metal.h" "ac_cv_header_Metal_Metal_h" "$ac_includes_default" +if test "x$ac_cv_header_Metal_Metal_h" = xyes +then :
- printf "%s\n" "#define HAVE_METAL_METAL_H 1" >>confdefs.h
fi
-done
- ac_ext=c
ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -8799,163 +10482,181 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
wine_can_build_preloader=yes WINEPRELOADER_LDFLAGS="-nostartfiles -nodefaultlibs -e _start -ldylib1.o -Wl,-image_base,0x7d400000,-segalign,0x1000,-pagezero_size,0x1000,-sectcreate,__TEXT,__info_plist,loader/wine_info.plist,-segaddr,WINE_4GB_RESERVE,0x100000000"
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_new_main -e _main" >&5
-$as_echo_n "checking whether the compiler supports -Wl,-no_new_main -e _main... " >&6; } -if ${ac_cv_cflags__Wl__no_new_main__e__main+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_new_main -e _main" >&5
+printf %s "checking whether the compiler supports -Wl,-no_new_main -e _main... " >&6; } +if test ${ac_cv_cflags__Wl__no_new_main__e__main+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,-no_new_main -e _main" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl__no_new_main__e__main=yes -else +else $as_nop ac_cv_cflags__Wl__no_new_main__e__main=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_new_main__e__main" >&5 -$as_echo "$ac_cv_cflags__Wl__no_new_main__e__main" >&6; } -if test "x$ac_cv_cflags__Wl__no_new_main__e__main" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_new_main__e__main" >&5 +printf "%s\n" "$ac_cv_cflags__Wl__no_new_main__e__main" >&6; } +if test "x$ac_cv_cflags__Wl__no_new_main__e__main" = xyes +then : WINEPRELOADER_LDFLAGS="-Wl,-no_new_main $WINEPRELOADER_LDFLAGS"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_new_main -e _main -nostartfiles -nodefaultlibs" >&5
-$as_echo_n "checking whether the compiler supports -Wl,-no_new_main -e _main -nostartfiles -nodefaultlibs... " >&6; } -if ${ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_new_main -e _main -nostartfiles -nodefaultlibs" >&5
+printf %s "checking whether the compiler supports -Wl,-no_new_main -e _main -nostartfiles -nodefaultlibs... " >&6; } +if test ${ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,-no_new_main -e _main -nostartfiles -nodefaultlibs" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs=yes -else +else $as_nop ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs" >&5 -$as_echo "$ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs" >&6; } -if test "x$ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs" >&5 +printf "%s\n" "$ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs" >&6; } +if test "x$ac_cv_cflags__Wl__no_new_main__e__main__nostartfiles__nodefaultlibs" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wl,-no_new_main -e _main -nostartfiles -nodefaultlibs" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_new_main -e _main -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs" >&5
-$as_echo_n "checking whether the compiler supports -Wl,-no_new_main -e _main -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs... " >&6; } -if ${ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs+:} false; then :
- $as_echo_n "(cached) " >&6
-else +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_new_main -e _main -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs" >&5
+printf %s "checking whether the compiler supports -Wl,-no_new_main -e _main -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs... " >&6; } +if test ${ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,-no_new_main -e _main -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs=yes -else +else $as_nop ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&5 -$as_echo "$ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&6; } -if test "x$ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&5 +printf "%s\n" "$ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&6; } +if test "x$ac_cv_cflags__Wl__no_new_main__e__main__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" = xyes +then : WINEPRELOADER_LDFLAGS="-mmacosx-version-min=10.7 $WINEPRELOADER_LDFLAGS" -else +else $as_nop wine_can_build_preloader=no fi fi -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -nostartfiles -nodefaultlibs" >&5
-$as_echo_n "checking whether the compiler supports -nostartfiles -nodefaultlibs... " >&6; } -if ${ac_cv_cflags__nostartfiles__nodefaultlibs+:} false; then :
- $as_echo_n "(cached) " >&6
-else +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -nostartfiles -nodefaultlibs" >&5
+printf %s "checking whether the compiler supports -nostartfiles -nodefaultlibs... " >&6; } +if test ${ac_cv_cflags__nostartfiles__nodefaultlibs+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -nostartfiles -nodefaultlibs" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__nostartfiles__nodefaultlibs=yes -else +else $as_nop ac_cv_cflags__nostartfiles__nodefaultlibs=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__nostartfiles__nodefaultlibs" >&5 -$as_echo "$ac_cv_cflags__nostartfiles__nodefaultlibs" >&6; } -if test "x$ac_cv_cflags__nostartfiles__nodefaultlibs" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__nostartfiles__nodefaultlibs" >&5 +printf "%s\n" "$ac_cv_cflags__nostartfiles__nodefaultlibs" >&6; } +if test "x$ac_cv_cflags__nostartfiles__nodefaultlibs" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -nostartfiles -nodefaultlibs" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs" >&5
-$as_echo_n "checking whether the compiler supports -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs... " >&6; } -if ${ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs+:} false; then :
- $as_echo_n "(cached) " >&6
-else +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs" >&5
+printf %s "checking whether the compiler supports -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs... " >&6; } +if test ${ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs=yes -else +else $as_nop ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&5 -$as_echo "$ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&6; } -if test "x$ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&5 +printf "%s\n" "$ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" >&6; } +if test "x$ac_cv_cflags__mmacosx_version_min_10_7__nostartfiles__nodefaultlibs" = xyes +then : WINEPRELOADER_LDFLAGS="-mmacosx-version-min=10.7 $WINEPRELOADER_LDFLAGS" -else +else $as_nop wine_can_build_preloader=no fi fi fi if test "$wine_can_build_preloader" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_pie" >&5
-$as_echo_n "checking whether the compiler supports -Wl,-no_pie... " >&6; } -if ${ac_cv_cflags__Wl__no_pie+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-no_pie" >&5
+printf %s "checking whether the compiler supports -Wl,-no_pie... " >&6; } +if test ${ac_cv_cflags__Wl__no_pie+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,-no_pie" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl__no_pie=yes -else +else $as_nop ac_cv_cflags__Wl__no_pie=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_pie" >&5 -$as_echo "$ac_cv_cflags__Wl__no_pie" >&6; } -if test "x$ac_cv_cflags__Wl__no_pie" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__no_pie" >&5 +printf "%s\n" "$ac_cv_cflags__Wl__no_pie" >&6; } +if test "x$ac_cv_cflags__Wl__no_pie" = xyes +then : WINEPRELOADER_LDFLAGS="-Wl,-no_pie $WINEPRELOADER_LDFLAGS" fi test "$wine_binary" = wine || wine_fn_append_file CONFIGURE_TARGETS "loader/wine-preloader" @@ -8975,16 +10676,12 @@ fi
ac_save_LIBS="$LIBS" LIBS="$LIBS $SECURITY_LIBS"
for ac_func in SSLCopyPeerCertificates
-do :
- ac_fn_c_check_func "$LINENO" "SSLCopyPeerCertificates" "ac_cv_func_SSLCopyPeerCertificates"
-if test "x$ac_cv_func_SSLCopyPeerCertificates" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_SSLCOPYPEERCERTIFICATES 1 -_ACEOF
ac_fn_c_check_func "$LINENO" "SSLCopyPeerCertificates" "ac_cv_func_SSLCopyPeerCertificates"
+if test "x$ac_cv_func_SSLCopyPeerCertificates" = xyes +then :
- printf "%s\n" "#define HAVE_SSLCOPYPEERCERTIFICATES 1" >>confdefs.h
fi -done
LIBS="$ac_save_LIBS" fi
@@ -8999,9 +10696,7 @@ done OPENAL_LIBS="-framework OpenAL"
-cat >>confdefs.h <<_ACEOF -#define HAVE_OPENAL 1 -_ACEOF +printf "%s\n" "#define HAVE_OPENAL 1" >>confdefs.h
ac_cv_lib_openal=yes fi
@@ -9015,16 +10710,12 @@ _ACEOF then ac_save_LIBS="$LIBS" LIBS="$LIBS $IOKIT_LIBS"
for ac_func in IOHIDManagerCreate
-do :
- ac_fn_c_check_func "$LINENO" "IOHIDManagerCreate" "ac_cv_func_IOHIDManagerCreate"
-if test "x$ac_cv_func_IOHIDManagerCreate" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_IOHIDMANAGERCREATE 1 -_ACEOF
ac_fn_c_check_func "$LINENO" "IOHIDManagerCreate" "ac_cv_func_IOHIDManagerCreate"
+if test "x$ac_cv_func_IOHIDManagerCreate" = xyes +then :
- printf "%s\n" "#define HAVE_IOHIDMANAGERCREATE 1" >>confdefs.h
fi -done
LIBS="$ac_save_LIBS" fi
@@ -9035,36 +10726,38 @@ done then ac_save_LIBS="$LIBS" LIBS="-framework QuickTime -framework ApplicationServices -framework CoreVideo $LIBS"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the QuickTime framework" >&5
-$as_echo_n "checking for the QuickTime framework... " >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for the QuickTime framework" >&5
+printf %s "checking for the QuickTime framework... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <QuickTime/ImageCompression.h> int -main () +main (void) { CodecManagerVersion(NULL); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; } +if ac_fn_c_try_link "$LINENO" +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; } QUICKTIME_LIBS="-framework QuickTime -framework ApplicationServices -framework CoreVideo"
enable_wineqtdecoder=${enable_wineqtdecoder:-yes}
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } ac_cv_header_QuickTime_ImageCompression_h=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS="$ac_save_LIBS" fi fi
- if test "$ac_cv_header_QuickTime_ImageCompression_h" != "yes"; then :
- if test "$ac_cv_header_QuickTime_ImageCompression_h" != "yes"
+then : case "x$with_quicktime" in x) as_fn_append wine_notices "|QuickTime ${notice_platform}development files not found, video decoding won't be supported." ;; xno) ;; @@ -9087,8 +10780,8 @@ fi
if test "$ac_cv_header_Metal_Metal_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether MTLDevice protocol supports registryID property" >&5
-$as_echo_n "checking whether MTLDevice protocol supports registryID property... " >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether MTLDevice protocol supports registryID property" >&5
+printf %s "checking whether MTLDevice protocol supports registryID property... " >&6; } ac_ext=m ac_cpp='$OBJCPP $CPPFLAGS' ac_compile='$OBJC -c $OBJCFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -9099,24 +10792,25 @@ ac_compiler_gnu=$ac_cv_objc_compiler_gnu /* end confdefs.h. */ #include <Metal/Metal.h> int -main () +main (void) { id<MTLDevice> device; device.registryID; ; return 0; } _ACEOF -if ac_fn_objc_try_compile "$LINENO"; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; } +if ac_fn_objc_try_compile "$LINENO" +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; }
-$as_echo "#define HAVE_MTLDEVICE_REGISTRYID 1" >>confdefs.h +printf "%s\n" "#define HAVE_MTLDEVICE_REGISTRYID 1" >>confdefs.h
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -9130,7 +10824,8 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_save_LIBS="$LIBS" LIBS="$LIBS $APPLICATIONSERVICES_LIBS" ac_fn_c_check_func "$LINENO" "CGDisplayModeGetWidth" "ac_cv_func_CGDisplayModeGetWidth" -if test "x$ac_cv_func_CGDisplayModeGetWidth" = xyes; then : +if test "x$ac_cv_func_CGDisplayModeGetWidth" = xyes +then : enable_winemac_drv=${enable_winemac_drv:-yes} fi
@@ -9151,38 +10846,42 @@ fi LDDLLFLAGS="-fPIC" LDEXECFLAGS="-Wl,-pie" enable_wineandroid_drv=${enable_wineandroid_drv:-yes}
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fPIC -Wl,--export-dynamic" >&5
-$as_echo_n "checking whether the compiler supports -fPIC -Wl,--export-dynamic... " >&6; } -if ${ac_cv_cflags__fPIC__Wl___export_dynamic+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fPIC -Wl,--export-dynamic" >&5
+printf %s "checking whether the compiler supports -fPIC -Wl,--export-dynamic... " >&6; } +if test ${ac_cv_cflags__fPIC__Wl___export_dynamic+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fPIC -Wl,--export-dynamic" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fPIC__Wl___export_dynamic=yes -else +else $as_nop ac_cv_cflags__fPIC__Wl___export_dynamic=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fPIC__Wl___export_dynamic" >&5 -$as_echo "$ac_cv_cflags__fPIC__Wl___export_dynamic" >&6; } -if test "x$ac_cv_cflags__fPIC__Wl___export_dynamic" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fPIC__Wl___export_dynamic" >&5 +printf "%s\n" "$ac_cv_cflags__fPIC__Wl___export_dynamic" >&6; } +if test "x$ac_cv_cflags__fPIC__Wl___export_dynamic" = xyes +then : WINELOADER_LDFLAGS="-Wl,--export-dynamic" fi WINEPRELOADER_LDFLAGS="-static -nostartfiles -nodefaultlibs -Wl,-Ttext=0x7d400000"
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lEGL" >&5
-$as_echo_n "checking for -lEGL... " >&6; } -if ${ac_cv_lib_soname_EGL+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lEGL" >&5
+printf %s "checking for -lEGL... " >&6; } +if test ${ac_cv_lib_soname_EGL+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lEGL $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -9191,53 +10890,52 @@ LIBS="-lEGL $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char eglGetProcAddress (); int -main () +main (void) { return eglGetProcAddress (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_EGL=`$ac_cv_path_LDD conftest.exe | grep "EGL" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_EGL=`$OTOOL -L conftest$ac_exeext | grep "libEGL\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libEGL.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_EGL=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libEGL\.$LIBEXT" | sed -e "s/^.*\[\(libEGL\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_EGL:+false} :; then :
if ${ac_cv_lib_soname_EGL:+false} :
+then : ac_cv_lib_soname_EGL=`$LDD conftest$ac_exeext | grep "libEGL\.$LIBEXT" | sed -e "s/^.*(libEGL.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_EGL= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_EGL:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_EGL:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_EGL" >&5
-$as_echo "$ac_cv_lib_soname_EGL" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_EGL" >&5
+printf "%s\n" "$ac_cv_lib_soname_EGL" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBEGL "$ac_cv_lib_soname_EGL" -_ACEOF +printf "%s\n" "#define SONAME_LIBEGL "$ac_cv_lib_soname_EGL"" >>confdefs.h
fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lGLESv2" >&5
-$as_echo_n "checking for -lGLESv2... " >&6; } -if ${ac_cv_lib_soname_GLESv2+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lGLESv2" >&5
+printf %s "checking for -lGLESv2... " >&6; } +if test ${ac_cv_lib_soname_GLESv2+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lGLESv2 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -9246,45 +10944,43 @@ LIBS="-lGLESv2 $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char glFlush (); int -main () +main (void) { return glFlush (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_GLESv2=`$ac_cv_path_LDD conftest.exe | grep "GLESv2" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_GLESv2=`$OTOOL -L conftest$ac_exeext | grep "libGLESv2\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libGLESv2.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_GLESv2=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libGLESv2\.$LIBEXT" | sed -e "s/^.*\[\(libGLESv2\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_GLESv2:+false} :; then :
if ${ac_cv_lib_soname_GLESv2:+false} :
+then : ac_cv_lib_soname_GLESv2=`$LDD conftest$ac_exeext | grep "libGLESv2\.$LIBEXT" | sed -e "s/^.*(libGLESv2.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_GLESv2= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_GLESv2:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_GLESv2:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_GLESv2" >&5
-$as_echo "$ac_cv_lib_soname_GLESv2" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_GLESv2" >&5
+printf "%s\n" "$ac_cv_lib_soname_GLESv2" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBGLESV2 "$ac_cv_lib_soname_GLESv2" -_ACEOF +printf "%s\n" "#define SONAME_LIBGLESV2 "$ac_cv_lib_soname_GLESv2"" >>confdefs.h
fi @@ -9305,29 +11001,32 @@ fi *i[3456789]86*) DLLFLAGS="$DLLFLAGS -fno-PIC" LDDLLFLAGS="-fno-PIC"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-PIC -Wl,-z,notext" >&5
-$as_echo_n "checking whether the compiler supports -fno-PIC -Wl,-z,notext... " >&6; } -if ${ac_cv_cflags__fno_PIC__Wl__z_notext+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-PIC -Wl,-z,notext" >&5
+printf %s "checking whether the compiler supports -fno-PIC -Wl,-z,notext... " >&6; } +if test ${ac_cv_cflags__fno_PIC__Wl__z_notext+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fno-PIC -Wl,-z,notext" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fno_PIC__Wl__z_notext=yes -else +else $as_nop ac_cv_cflags__fno_PIC__Wl__z_notext=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_PIC__Wl__z_notext" >&5 -$as_echo "$ac_cv_cflags__fno_PIC__Wl__z_notext" >&6; } -if test "x$ac_cv_cflags__fno_PIC__Wl__z_notext" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_PIC__Wl__z_notext" >&5 +printf "%s\n" "$ac_cv_cflags__fno_PIC__Wl__z_notext" >&6; } +if test "x$ac_cv_cflags__fno_PIC__Wl__z_notext" = xyes +then : LDDLLFLAGS="$LDDLLFLAGS -Wl,-z,notext" fi ;; @@ -9335,196 +11034,217 @@ fi DLLFLAGS="$DLLFLAGS -fPIC" LDDLLFLAGS="-fPIC" ;; esac
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we can build a GNU style ELF dll" >&5
-$as_echo_n "checking whether we can build a GNU style ELF dll... " >&6; } -if ${ac_cv_c_dll_gnuelf+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we can build a GNU style ELF dll" >&5
+printf %s "checking whether we can build a GNU style ELF dll... " >&6; } +if test ${ac_cv_c_dll_gnuelf+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fPIC -shared -Wl,-Bsymbolic" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ void myfunc() {} _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fPIC__shared__Wl__Bsymbolic=yes -else +else $as_nop ac_cv_cflags__fPIC__shared__Wl__Bsymbolic=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved -if test "x$ac_cv_cflags__fPIC__shared__Wl__Bsymbolic" = xyes; then : +if test "x$ac_cv_cflags__fPIC__shared__Wl__Bsymbolic" = xyes +then : ac_cv_c_dll_gnuelf="yes" -else +else $as_nop ac_cv_c_dll_gnuelf="no" fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_dll_gnuelf" >&5 -$as_echo "$ac_cv_c_dll_gnuelf" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_dll_gnuelf" >&5 +printf "%s\n" "$ac_cv_c_dll_gnuelf" >&6; } if test "$ac_cv_c_dll_gnuelf" = "yes" then LIBWINE_LDFLAGS="-shared"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -shared -Wl,-soname,confest.so.1" >&5
-$as_echo_n "checking whether the compiler supports -shared -Wl,-soname,confest.so.1... " >&6; } -if ${ac_cv_cflags__shared__Wl__soname_confest_so_1+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -shared -Wl,-soname,confest.so.1" >&5
+printf %s "checking whether the compiler supports -shared -Wl,-soname,confest.so.1... " >&6; } +if test ${ac_cv_cflags__shared__Wl__soname_confest_so_1+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -shared -Wl,-soname,confest.so.1" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__shared__Wl__soname_confest_so_1=yes -else +else $as_nop ac_cv_cflags__shared__Wl__soname_confest_so_1=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__shared__Wl__soname_confest_so_1" >&5 -$as_echo "$ac_cv_cflags__shared__Wl__soname_confest_so_1" >&6; } -if test "x$ac_cv_cflags__shared__Wl__soname_confest_so_1" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__shared__Wl__soname_confest_so_1" >&5 +printf "%s\n" "$ac_cv_cflags__shared__Wl__soname_confest_so_1" >&6; } +if test "x$ac_cv_cflags__shared__Wl__soname_confest_so_1" = xyes +then : LIBWINE_LDFLAGS="-shared -Wl,-soname,libwine.so.$libwine_soversion" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -shared -Wl,-h,confest.so.1" >&5
-$as_echo_n "checking whether the compiler supports -shared -Wl,-h,confest.so.1... " >&6; } -if ${ac_cv_cflags__shared__Wl__h_confest_so_1+:} false; then :
- $as_echo_n "(cached) " >&6
-else +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -shared -Wl,-h,confest.so.1" >&5
+printf %s "checking whether the compiler supports -shared -Wl,-h,confest.so.1... " >&6; } +if test ${ac_cv_cflags__shared__Wl__h_confest_so_1+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -shared -Wl,-h,confest.so.1" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__shared__Wl__h_confest_so_1=yes -else +else $as_nop ac_cv_cflags__shared__Wl__h_confest_so_1=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__shared__Wl__h_confest_so_1" >&5 -$as_echo "$ac_cv_cflags__shared__Wl__h_confest_so_1" >&6; } -if test "x$ac_cv_cflags__shared__Wl__h_confest_so_1" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__shared__Wl__h_confest_so_1" >&5 +printf "%s\n" "$ac_cv_cflags__shared__Wl__h_confest_so_1" >&6; } +if test "x$ac_cv_cflags__shared__Wl__h_confest_so_1" = xyes +then : LIBWINE_LDFLAGS="-shared -Wl,-h,libwine.so.$libwine_soversion" fi fi
echo '{ global: *; };' >conftest.map
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -shared -Wl,--version-script=conftest.map" >&5
-$as_echo_n "checking whether the compiler supports -shared -Wl,--version-script=conftest.map... " >&6; } -if ${ac_cv_cflags__shared__Wl___version_script_conftest_map+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -shared -Wl,--version-script=conftest.map" >&5
+printf %s "checking whether the compiler supports -shared -Wl,--version-script=conftest.map... " >&6; } +if test ${ac_cv_cflags__shared__Wl___version_script_conftest_map+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -shared -Wl,--version-script=conftest.map" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__shared__Wl___version_script_conftest_map=yes -else +else $as_nop ac_cv_cflags__shared__Wl___version_script_conftest_map=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__shared__Wl___version_script_conftest_map" >&5 -$as_echo "$ac_cv_cflags__shared__Wl___version_script_conftest_map" >&6; } -if test "x$ac_cv_cflags__shared__Wl___version_script_conftest_map" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__shared__Wl___version_script_conftest_map" >&5 +printf "%s\n" "$ac_cv_cflags__shared__Wl___version_script_conftest_map" >&6; } +if test "x$ac_cv_cflags__shared__Wl___version_script_conftest_map" = xyes +then : LIBWINE_LDFLAGS="$LIBWINE_LDFLAGS -Wl,--version-script=$(srcdir)/wine.map" fi rm -f conftest.map
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--export-dynamic" >&5
-$as_echo_n "checking whether the compiler supports -Wl,--export-dynamic... " >&6; } -if ${ac_cv_cflags__Wl___export_dynamic+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--export-dynamic" >&5
+printf %s "checking whether the compiler supports -Wl,--export-dynamic... " >&6; } +if test ${ac_cv_cflags__Wl___export_dynamic+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,--export-dynamic" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl___export_dynamic=yes -else +else $as_nop ac_cv_cflags__Wl___export_dynamic=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___export_dynamic" >&5 -$as_echo "$ac_cv_cflags__Wl___export_dynamic" >&6; } -if test "x$ac_cv_cflags__Wl___export_dynamic" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___export_dynamic" >&5 +printf "%s\n" "$ac_cv_cflags__Wl___export_dynamic" >&6; } +if test "x$ac_cv_cflags__Wl___export_dynamic" = xyes +then : WINELOADER_LDFLAGS="-Wl,--export-dynamic" fi WINEPRELOADER_LDFLAGS="-static -nostartfiles -nodefaultlibs -Wl,-Ttext=0x7d400000"
case $host_cpu in *i[3456789]86* | x86_64 | *aarch64* | arm*)
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-Ttext-segment=0x7bc00000" >&5
-$as_echo_n "checking whether the compiler supports -Wl,-Ttext-segment=0x7bc00000... " >&6; } -if ${ac_cv_cflags__Wl__Ttext_segment_0x7bc00000+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-Ttext-segment=0x7bc00000" >&5
+printf %s "checking whether the compiler supports -Wl,-Ttext-segment=0x7bc00000... " >&6; } +if test ${ac_cv_cflags__Wl__Ttext_segment_0x7bc00000+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,-Ttext-segment=0x7bc00000" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl__Ttext_segment_0x7bc00000=yes -else +else $as_nop ac_cv_cflags__Wl__Ttext_segment_0x7bc00000=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__Ttext_segment_0x7bc00000" >&5 -$as_echo "$ac_cv_cflags__Wl__Ttext_segment_0x7bc00000" >&6; } -if test "x$ac_cv_cflags__Wl__Ttext_segment_0x7bc00000" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__Ttext_segment_0x7bc00000" >&5 +printf "%s\n" "$ac_cv_cflags__Wl__Ttext_segment_0x7bc00000" >&6; } +if test "x$ac_cv_cflags__Wl__Ttext_segment_0x7bc00000" = xyes +then : case $host_os in freebsd* | kfreebsd*-gnu) WINELOADER_LDFLAGS="$WINELOADER_LDFLAGS -Wl,-Ttext-segment=0x60000000" ;; *) WINELOADER_LDFLAGS="$WINELOADER_LDFLAGS -Wl,-Ttext-segment=0x7d000000" ;; esac -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--section-start,.interp=0x7d000400" >&5
-$as_echo_n "checking whether the compiler supports -Wl,--section-start,.interp=0x7d000400... " >&6; } -if ${ac_cv_cflags__Wl___section_start__interp_0x7d000400+:} false; then :
- $as_echo_n "(cached) " >&6
-else +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--section-start,.interp=0x7d000400" >&5
+printf %s "checking whether the compiler supports -Wl,--section-start,.interp=0x7d000400... " >&6; } +if test ${ac_cv_cflags__Wl___section_start__interp_0x7d000400+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,--section-start,.interp=0x7d000400" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl___section_start__interp_0x7d000400=yes -else +else $as_nop ac_cv_cflags__Wl___section_start__interp_0x7d000400=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___section_start__interp_0x7d000400" >&5 -$as_echo "$ac_cv_cflags__Wl___section_start__interp_0x7d000400" >&6; } -if test "x$ac_cv_cflags__Wl___section_start__interp_0x7d000400" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___section_start__interp_0x7d000400" >&5 +printf "%s\n" "$ac_cv_cflags__Wl___section_start__interp_0x7d000400" >&6; } +if test "x$ac_cv_cflags__Wl___section_start__interp_0x7d000400" = xyes +then : case $host_os in freebsd* | kfreebsd*-gnu) WINELOADER_LDFLAGS="$WINELOADER_LDFLAGS -Wl,--section-start,.interp=0x60000400" ;; *) WINELOADER_LDFLAGS="$WINELOADER_LDFLAGS -Wl,--section-start,.interp=0x7d000400" ;; @@ -9532,11 +11252,12 @@ if test "x$ac_cv_cflags__Wl___section_start__interp_0x7d000400" = xyes; then : fi # Extract the first word of "prelink", so it can be a program name with args. set dummy prelink; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_path_PRELINK+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_path_PRELINK+y} +then :
- printf %s "(cached) " >&6
+else $as_nop case $PRELINK in [\/]* | ?:[\/]*) ac_cv_path_PRELINK="$PRELINK" # Let the user override the test with a path. @@ -9546,11 +11267,15 @@ else for as_dir in /sbin /usr/sbin $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- ac_cv_path_PRELINK="$as_dir/$ac_word$ac_exec_ext"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
- ac_cv_path_PRELINK="$as_dir$ac_word$ac_exec_ext"
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -9563,11 +11288,11 @@ esac fi PRELINK=$ac_cv_path_PRELINK if test -n "$PRELINK"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PRELINK" >&5
-$as_echo "$PRELINK" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PRELINK" >&5
+printf "%s\n" "$PRELINK" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -9576,62 +11301,68 @@ fi as_fn_append wine_warnings "|prelink not found and linker does not support relocation, base address of core dlls won't be set correctly." fi fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-z,max-page-size=0x1000" >&5
-$as_echo_n "checking whether the compiler supports -Wl,-z,max-page-size=0x1000... " >&6; } -if ${ac_cv_cflags__Wl__z_max_page_size_0x1000+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-z,max-page-size=0x1000" >&5
+printf %s "checking whether the compiler supports -Wl,-z,max-page-size=0x1000... " >&6; } +if test ${ac_cv_cflags__Wl__z_max_page_size_0x1000+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,-z,max-page-size=0x1000" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl__z_max_page_size_0x1000=yes -else +else $as_nop ac_cv_cflags__Wl__z_max_page_size_0x1000=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__z_max_page_size_0x1000" >&5 -$as_echo "$ac_cv_cflags__Wl__z_max_page_size_0x1000" >&6; } -if test "x$ac_cv_cflags__Wl__z_max_page_size_0x1000" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__z_max_page_size_0x1000" >&5 +printf "%s\n" "$ac_cv_cflags__Wl__z_max_page_size_0x1000" >&6; } +if test "x$ac_cv_cflags__Wl__z_max_page_size_0x1000" = xyes +then : WINELOADER_LDFLAGS="$WINELOADER_LDFLAGS -Wl,-z,max-page-size=0x1000" fi ;; esac
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we can build a UnixWare (Solaris) dll" >&5
-$as_echo_n "checking whether we can build a UnixWare (Solaris) dll... " >&6; } -if ${ac_cv_c_dll_unixware+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we can build a UnixWare (Solaris) dll" >&5
+printf %s "checking whether we can build a UnixWare (Solaris) dll... " >&6; } +if test ${ac_cv_c_dll_unixware+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ void myfunc() {} _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fPIC__Wl__G__h_conftest_so_1_0__B_symbolic=yes -else +else $as_nop ac_cv_cflags__fPIC__Wl__G__h_conftest_so_1_0__B_symbolic=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved -if test "x$ac_cv_cflags__fPIC__Wl__G__h_conftest_so_1_0__B_symbolic" = xyes; then : +if test "x$ac_cv_cflags__fPIC__Wl__G__h_conftest_so_1_0__B_symbolic" = xyes +then : ac_cv_c_dll_unixware="yes" -else +else $as_nop ac_cv_c_dll_unixware="no" fi fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_dll_unixware" >&5 -$as_echo "$ac_cv_c_dll_unixware" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_dll_unixware" >&5 +printf "%s\n" "$ac_cv_c_dll_unixware" >&6; } if test "$ac_cv_c_dll_unixware" = "yes" then LIBWINE_LDFLAGS="-Wl,-G,-h,libwine.so.$libwine_soversion" @@ -9674,11 +11405,12 @@ for ac_prog in $ac_prefix_list do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if ${ac_cv_prog_CROSSCC+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_CROSSCC+y} +then :
- printf %s "(cached) " >&6
+else $as_nop if test -n "$CROSSCC"; then ac_cv_prog_CROSSCC="$CROSSCC" # Let the user override the test. else @@ -9686,11 +11418,15 @@ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CROSSCC="$ac_prog"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi
done @@ -9701,11 +11437,11 @@ fi fi CROSSCC=$ac_cv_prog_CROSSCC if test -n "$CROSSCC"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CROSSCC" >&5
-$as_echo "$CROSSCC" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CROSSCC" >&5
+printf "%s\n" "$CROSSCC" >&6; } else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } fi
@@ -9727,31 +11463,33 @@ test -n "$CROSSCC" || CROSSCC="false"
CC="$CROSSCC" CFLAGS=$CROSSCFLAGS
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CROSSCC works" >&5
-$as_echo_n "checking whether $CROSSCC works... " >&6; } -if ${wine_cv_crosscc+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CROSSCC works" >&5
+printf %s "checking whether $CROSSCC works... " >&6; } +if test ${wine_cv_crosscc+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : wine_cv_crosscc=yes -else +else $as_nop wine_cv_crosscc=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_crosscc" >&5 -$as_echo "$wine_cv_crosscc" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_crosscc" >&5 +printf "%s\n" "$wine_cv_crosscc" >&6; } if test $wine_cv_crosscc = yes then set x $CROSSCC @@ -9777,12 +11515,13 @@ $as_echo "$wine_cv_crosscc" >&6; } case $llvm_target in *windows) llvm_cflags="$llvm_cflags -Wl,-subsystem:console" ;; esac
as_ac_var=`$as_echo "ac_cv_crosscflags_-target $llvm_target $llvm_cflags" | $as_tr_sh`
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -target $llvm_target $llvm_cflags" >&5 -$as_echo_n "checking whether the cross-compiler supports -target $llvm_target $llvm_cflags... " >&6; } -if eval ${$as_ac_var+:} false; then :
- $as_echo_n "(cached) " >&6
-else
as_ac_var=`printf "%s\n" "ac_cv_crosscflags_-target $llvm_target $llvm_cflags" | $as_tr_sh`
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -target $llvm_target $llvm_cflags" >&5 +printf %s "checking whether the cross-compiler supports -target $llvm_target $llvm_cflags... " >&6; } +if eval test ${$as_ac_var+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -9793,21 +11532,23 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : eval "$as_ac_var=yes" -else +else $as_nop eval "$as_ac_var=no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi eval ac_res=$$as_ac_var
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
-$as_echo "$ac_res" >&6; } -if eval test "x$"$as_ac_var"" = x"yes"; then :
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+printf "%s\n" "$ac_res" >&6; } +if eval test "x$"$as_ac_var"" = x"yes" +then : CROSSTARGET=$llvm_target EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -target $CROSSTARGET" DELAYLOADFLAG="-Wl,-delayload," @@ -9815,11 +11556,12 @@ if eval test "x$"$as_ac_var"" = x"yes"; then : CFLAGS="$CFLAGS $llvm_cflags" fi fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -fno-strict-aliasing" >&5
-$as_echo_n "checking whether the cross-compiler supports -fno-strict-aliasing... " >&6; } -if ${ac_cv_crosscflags__fno_strict_aliasing+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -fno-strict-aliasing" >&5
+printf %s "checking whether the cross-compiler supports -fno-strict-aliasing... " >&6; } +if test ${ac_cv_crosscflags__fno_strict_aliasing+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -9830,27 +11572,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__fno_strict_aliasing=yes -else +else $as_nop ac_cv_crosscflags__fno_strict_aliasing=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__fno_strict_aliasing" >&5 -$as_echo "$ac_cv_crosscflags__fno_strict_aliasing" >&6; } -if test "x$ac_cv_crosscflags__fno_strict_aliasing" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__fno_strict_aliasing" >&5 +printf "%s\n" "$ac_cv_crosscflags__fno_strict_aliasing" >&6; } +if test "x$ac_cv_crosscflags__fno_strict_aliasing" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -fno-strict-aliasing" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Werror=unknown-warning-option" >&5
-$as_echo_n "checking whether the cross-compiler supports -Werror=unknown-warning-option... " >&6; } -if ${ac_cv_crosscflags__Werror_unknown_warning_option+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Werror=unknown-warning-option" >&5
+printf %s "checking whether the cross-compiler supports -Werror=unknown-warning-option... " >&6; } +if test ${ac_cv_crosscflags__Werror_unknown_warning_option+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -9861,27 +11606,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Werror_unknown_warning_option=yes -else +else $as_nop ac_cv_crosscflags__Werror_unknown_warning_option=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Werror_unknown_warning_option" >&5 -$as_echo "$ac_cv_crosscflags__Werror_unknown_warning_option" >&6; } -if test "x$ac_cv_crosscflags__Werror_unknown_warning_option" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Werror_unknown_warning_option" >&5 +printf "%s\n" "$ac_cv_crosscflags__Werror_unknown_warning_option" >&6; } +if test "x$ac_cv_crosscflags__Werror_unknown_warning_option" = xyes +then : CFLAGS="$CFLAGS -Werror=unknown-warning-option" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Werror=ignored-optimization-argument" >&5
-$as_echo_n "checking whether the cross-compiler supports -Werror=ignored-optimization-argument... " >&6; } -if ${ac_cv_crosscflags__Werror_ignored_optimization_argument+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Werror=ignored-optimization-argument" >&5
+printf %s "checking whether the cross-compiler supports -Werror=ignored-optimization-argument... " >&6; } +if test ${ac_cv_crosscflags__Werror_ignored_optimization_argument+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -9892,27 +11640,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Werror_ignored_optimization_argument=yes -else +else $as_nop ac_cv_crosscflags__Werror_ignored_optimization_argument=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Werror_ignored_optimization_argument" >&5 -$as_echo "$ac_cv_crosscflags__Werror_ignored_optimization_argument" >&6; } -if test "x$ac_cv_crosscflags__Werror_ignored_optimization_argument" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Werror_ignored_optimization_argument" >&5 +printf "%s\n" "$ac_cv_crosscflags__Werror_ignored_optimization_argument" >&6; } +if test "x$ac_cv_crosscflags__Werror_ignored_optimization_argument" = xyes +then : CFLAGS="$CFLAGS -Werror=ignored-optimization-argument" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wdeclaration-after-statement" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wdeclaration-after-statement... " >&6; } -if ${ac_cv_crosscflags__Wdeclaration_after_statement+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wdeclaration-after-statement" >&5
+printf %s "checking whether the cross-compiler supports -Wdeclaration-after-statement... " >&6; } +if test ${ac_cv_crosscflags__Wdeclaration_after_statement+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -9923,27 +11674,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wdeclaration_after_statement=yes -else +else $as_nop ac_cv_crosscflags__Wdeclaration_after_statement=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wdeclaration_after_statement" >&5 -$as_echo "$ac_cv_crosscflags__Wdeclaration_after_statement" >&6; } -if test "x$ac_cv_crosscflags__Wdeclaration_after_statement" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wdeclaration_after_statement" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wdeclaration_after_statement" >&6; } +if test "x$ac_cv_crosscflags__Wdeclaration_after_statement" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wdeclaration-after-statement" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wempty-body" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wempty-body... " >&6; } -if ${ac_cv_crosscflags__Wempty_body+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wempty-body" >&5
+printf %s "checking whether the cross-compiler supports -Wempty-body... " >&6; } +if test ${ac_cv_crosscflags__Wempty_body+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -9954,27 +11708,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wempty_body=yes -else +else $as_nop ac_cv_crosscflags__Wempty_body=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wempty_body" >&5 -$as_echo "$ac_cv_crosscflags__Wempty_body" >&6; } -if test "x$ac_cv_crosscflags__Wempty_body" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wempty_body" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wempty_body" >&6; } +if test "x$ac_cv_crosscflags__Wempty_body" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wempty-body" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wignored-qualifiers" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wignored-qualifiers... " >&6; } -if ${ac_cv_crosscflags__Wignored_qualifiers+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wignored-qualifiers" >&5
+printf %s "checking whether the cross-compiler supports -Wignored-qualifiers... " >&6; } +if test ${ac_cv_crosscflags__Wignored_qualifiers+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -9985,27 +11742,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wignored_qualifiers=yes -else +else $as_nop ac_cv_crosscflags__Wignored_qualifiers=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wignored_qualifiers" >&5 -$as_echo "$ac_cv_crosscflags__Wignored_qualifiers" >&6; } -if test "x$ac_cv_crosscflags__Wignored_qualifiers" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wignored_qualifiers" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wignored_qualifiers" >&6; } +if test "x$ac_cv_crosscflags__Wignored_qualifiers" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wignored-qualifiers" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Winit-self" >&5
-$as_echo_n "checking whether the cross-compiler supports -Winit-self... " >&6; } -if ${ac_cv_crosscflags__Winit_self+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Winit-self" >&5
+printf %s "checking whether the cross-compiler supports -Winit-self... " >&6; } +if test ${ac_cv_crosscflags__Winit_self+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10016,27 +11776,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Winit_self=yes -else +else $as_nop ac_cv_crosscflags__Winit_self=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Winit_self" >&5 -$as_echo "$ac_cv_crosscflags__Winit_self" >&6; } -if test "x$ac_cv_crosscflags__Winit_self" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Winit_self" >&5 +printf "%s\n" "$ac_cv_crosscflags__Winit_self" >&6; } +if test "x$ac_cv_crosscflags__Winit_self" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Winit-self" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wpacked-not-aligned" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wpacked-not-aligned... " >&6; } -if ${ac_cv_crosscflags__Wpacked_not_aligned+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wpacked-not-aligned" >&5
+printf %s "checking whether the cross-compiler supports -Wpacked-not-aligned... " >&6; } +if test ${ac_cv_crosscflags__Wpacked_not_aligned+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10047,27 +11810,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wpacked_not_aligned=yes -else +else $as_nop ac_cv_crosscflags__Wpacked_not_aligned=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wpacked_not_aligned" >&5 -$as_echo "$ac_cv_crosscflags__Wpacked_not_aligned" >&6; } -if test "x$ac_cv_crosscflags__Wpacked_not_aligned" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wpacked_not_aligned" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wpacked_not_aligned" >&6; } +if test "x$ac_cv_crosscflags__Wpacked_not_aligned" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wno-packed-not-aligned" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wpragma-pack" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wpragma-pack... " >&6; } -if ${ac_cv_crosscflags__Wpragma_pack+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wpragma-pack" >&5
+printf %s "checking whether the cross-compiler supports -Wpragma-pack... " >&6; } +if test ${ac_cv_crosscflags__Wpragma_pack+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10078,27 +11844,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wpragma_pack=yes -else +else $as_nop ac_cv_crosscflags__Wpragma_pack=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wpragma_pack" >&5 -$as_echo "$ac_cv_crosscflags__Wpragma_pack" >&6; } -if test "x$ac_cv_crosscflags__Wpragma_pack" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wpragma_pack" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wpragma_pack" >&6; } +if test "x$ac_cv_crosscflags__Wpragma_pack" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wno-pragma-pack" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wshift-overflow=2" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wshift-overflow=2... " >&6; } -if ${ac_cv_crosscflags__Wshift_overflow_2+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wshift-overflow=2" >&5
+printf %s "checking whether the cross-compiler supports -Wshift-overflow=2... " >&6; } +if test ${ac_cv_crosscflags__Wshift_overflow_2+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10109,27 +11878,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wshift_overflow_2=yes -else +else $as_nop ac_cv_crosscflags__Wshift_overflow_2=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wshift_overflow_2" >&5 -$as_echo "$ac_cv_crosscflags__Wshift_overflow_2" >&6; } -if test "x$ac_cv_crosscflags__Wshift_overflow_2" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wshift_overflow_2" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wshift_overflow_2" >&6; } +if test "x$ac_cv_crosscflags__Wshift_overflow_2" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wshift-overflow=2" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wstrict-prototypes" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wstrict-prototypes... " >&6; } -if ${ac_cv_crosscflags__Wstrict_prototypes+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wstrict-prototypes" >&5
+printf %s "checking whether the cross-compiler supports -Wstrict-prototypes... " >&6; } +if test ${ac_cv_crosscflags__Wstrict_prototypes+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10140,27 +11912,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wstrict_prototypes=yes -else +else $as_nop ac_cv_crosscflags__Wstrict_prototypes=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wstrict_prototypes" >&5 -$as_echo "$ac_cv_crosscflags__Wstrict_prototypes" >&6; } -if test "x$ac_cv_crosscflags__Wstrict_prototypes" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wstrict_prototypes" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wstrict_prototypes" >&6; } +if test "x$ac_cv_crosscflags__Wstrict_prototypes" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wstrict-prototypes" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wtype-limits" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wtype-limits... " >&6; } -if ${ac_cv_crosscflags__Wtype_limits+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wtype-limits" >&5
+printf %s "checking whether the cross-compiler supports -Wtype-limits... " >&6; } +if test ${ac_cv_crosscflags__Wtype_limits+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10171,27 +11946,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wtype_limits=yes -else +else $as_nop ac_cv_crosscflags__Wtype_limits=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wtype_limits" >&5 -$as_echo "$ac_cv_crosscflags__Wtype_limits" >&6; } -if test "x$ac_cv_crosscflags__Wtype_limits" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wtype_limits" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wtype_limits" >&6; } +if test "x$ac_cv_crosscflags__Wtype_limits" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wtype-limits" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wunused-but-set-parameter" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wunused-but-set-parameter... " >&6; } -if ${ac_cv_crosscflags__Wunused_but_set_parameter+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wunused-but-set-parameter" >&5
+printf %s "checking whether the cross-compiler supports -Wunused-but-set-parameter... " >&6; } +if test ${ac_cv_crosscflags__Wunused_but_set_parameter+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10202,27 +11980,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wunused_but_set_parameter=yes -else +else $as_nop ac_cv_crosscflags__Wunused_but_set_parameter=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wunused_but_set_parameter" >&5 -$as_echo "$ac_cv_crosscflags__Wunused_but_set_parameter" >&6; } -if test "x$ac_cv_crosscflags__Wunused_but_set_parameter" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wunused_but_set_parameter" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wunused_but_set_parameter" >&6; } +if test "x$ac_cv_crosscflags__Wunused_but_set_parameter" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wunused-but-set-parameter" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wvla" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wvla... " >&6; } -if ${ac_cv_crosscflags__Wvla+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wvla" >&5
+printf %s "checking whether the cross-compiler supports -Wvla... " >&6; } +if test ${ac_cv_crosscflags__Wvla+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10233,27 +12014,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wvla=yes -else +else $as_nop ac_cv_crosscflags__Wvla=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wvla" >&5 -$as_echo "$ac_cv_crosscflags__Wvla" >&6; } -if test "x$ac_cv_crosscflags__Wvla" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wvla" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wvla" >&6; } +if test "x$ac_cv_crosscflags__Wvla" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wvla" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wwrite-strings" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wwrite-strings... " >&6; } -if ${ac_cv_crosscflags__Wwrite_strings+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wwrite-strings" >&5
+printf %s "checking whether the cross-compiler supports -Wwrite-strings... " >&6; } +if test ${ac_cv_crosscflags__Wwrite_strings+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10264,27 +12048,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wwrite_strings=yes -else +else $as_nop ac_cv_crosscflags__Wwrite_strings=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wwrite_strings" >&5 -$as_echo "$ac_cv_crosscflags__Wwrite_strings" >&6; } -if test "x$ac_cv_crosscflags__Wwrite_strings" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wwrite_strings" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wwrite_strings" >&6; } +if test "x$ac_cv_crosscflags__Wwrite_strings" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wwrite-strings" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wpointer-arith" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wpointer-arith... " >&6; } -if ${ac_cv_crosscflags__Wpointer_arith+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wpointer-arith" >&5
+printf %s "checking whether the cross-compiler supports -Wpointer-arith... " >&6; } +if test ${ac_cv_crosscflags__Wpointer_arith+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10295,27 +12082,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wpointer_arith=yes -else +else $as_nop ac_cv_crosscflags__Wpointer_arith=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wpointer_arith" >&5 -$as_echo "$ac_cv_crosscflags__Wpointer_arith" >&6; } -if test "x$ac_cv_crosscflags__Wpointer_arith" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wpointer_arith" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wpointer_arith" >&6; } +if test "x$ac_cv_crosscflags__Wpointer_arith" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wpointer-arith" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wlogical-op" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wlogical-op... " >&6; } -if ${ac_cv_crosscflags__Wlogical_op+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wlogical-op" >&5
+printf %s "checking whether the cross-compiler supports -Wlogical-op... " >&6; } +if test ${ac_cv_crosscflags__Wlogical_op+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10326,27 +12116,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wlogical_op=yes -else +else $as_nop ac_cv_crosscflags__Wlogical_op=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wlogical_op" >&5 -$as_echo "$ac_cv_crosscflags__Wlogical_op" >&6; } -if test "x$ac_cv_crosscflags__Wlogical_op" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wlogical_op" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wlogical_op" >&6; } +if test "x$ac_cv_crosscflags__Wlogical_op" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wlogical-op" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wabsolute-value" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wabsolute-value... " >&6; } -if ${ac_cv_crosscflags__Wabsolute_value+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wabsolute-value" >&5
+printf %s "checking whether the cross-compiler supports -Wabsolute-value... " >&6; } +if test ${ac_cv_crosscflags__Wabsolute_value+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10357,29 +12150,32 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wabsolute_value=yes -else +else $as_nop ac_cv_crosscflags__Wabsolute_value=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wabsolute_value" >&5 -$as_echo "$ac_cv_crosscflags__Wabsolute_value" >&6; } -if test "x$ac_cv_crosscflags__Wabsolute_value" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wabsolute_value" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wabsolute_value" >&6; } +if test "x$ac_cv_crosscflags__Wabsolute_value" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wabsolute-value" fi
case $host_cpu in
*i[3456789]86*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -fno-omit-frame-pointer" >&5
-$as_echo_n "checking whether the cross-compiler supports -fno-omit-frame-pointer... " >&6; } -if ${ac_cv_crosscflags__fno_omit_frame_pointer+:} false; then :
- $as_echo_n "(cached) " >&6
-else
*i[3456789]86*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -fno-omit-frame-pointer" >&5
+printf %s "checking whether the cross-compiler supports -fno-omit-frame-pointer... " >&6; } +if test ${ac_cv_crosscflags__fno_omit_frame_pointer+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10390,27 +12186,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__fno_omit_frame_pointer=yes -else +else $as_nop ac_cv_crosscflags__fno_omit_frame_pointer=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__fno_omit_frame_pointer" >&5 -$as_echo "$ac_cv_crosscflags__fno_omit_frame_pointer" >&6; } -if test "x$ac_cv_crosscflags__fno_omit_frame_pointer" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__fno_omit_frame_pointer" >&5 +printf "%s\n" "$ac_cv_crosscflags__fno_omit_frame_pointer" >&6; } +if test "x$ac_cv_crosscflags__fno_omit_frame_pointer" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -fno-omit-frame-pointer" fi ;;
x86_64) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wno-format" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wno-format... " >&6; } -if ${ac_cv_crosscflags__Wno_format+:} false; then :
- $as_echo_n "(cached) " >&6
-else
x86_64) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wno-format" >&5
+printf %s "checking whether the cross-compiler supports -Wno-format... " >&6; } +if test ${ac_cv_crosscflags__Wno_format+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10421,27 +12220,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wno_format=yes -else +else $as_nop ac_cv_crosscflags__Wno_format=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wno_format" >&5 -$as_echo "$ac_cv_crosscflags__Wno_format" >&6; } -if test "x$ac_cv_crosscflags__Wno_format" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wno_format" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wno_format" >&6; } +if test "x$ac_cv_crosscflags__Wno_format" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wno-format" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wformat-overflow" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wformat-overflow... " >&6; } -if ${ac_cv_crosscflags__Wformat_overflow+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wformat-overflow" >&5
+printf %s "checking whether the cross-compiler supports -Wformat-overflow... " >&6; } +if test ${ac_cv_crosscflags__Wformat_overflow+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10452,27 +12254,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wformat_overflow=yes -else +else $as_nop ac_cv_crosscflags__Wformat_overflow=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wformat_overflow" >&5 -$as_echo "$ac_cv_crosscflags__Wformat_overflow" >&6; } -if test "x$ac_cv_crosscflags__Wformat_overflow" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wformat_overflow" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wformat_overflow" >&6; } +if test "x$ac_cv_crosscflags__Wformat_overflow" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wformat-overflow" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wnonnull" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wnonnull... " >&6; } -if ${ac_cv_crosscflags__Wnonnull+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wnonnull" >&5
+printf %s "checking whether the cross-compiler supports -Wnonnull... " >&6; } +if test ${ac_cv_crosscflags__Wnonnull+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10483,27 +12288,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wnonnull=yes -else +else $as_nop ac_cv_crosscflags__Wnonnull=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wnonnull" >&5 -$as_echo "$ac_cv_crosscflags__Wnonnull" >&6; } -if test "x$ac_cv_crosscflags__Wnonnull" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wnonnull" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wnonnull" >&6; } +if test "x$ac_cv_crosscflags__Wnonnull" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wnonnull" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -mcx16" >&5
-$as_echo_n "checking whether the cross-compiler supports -mcx16... " >&6; } -if ${ac_cv_crosscflags__mcx16+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -mcx16" >&5
+printf %s "checking whether the cross-compiler supports -mcx16... " >&6; } +if test ${ac_cv_crosscflags__mcx16+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10514,27 +12322,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__mcx16=yes -else +else $as_nop ac_cv_crosscflags__mcx16=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__mcx16" >&5 -$as_echo "$ac_cv_crosscflags__mcx16" >&6; } -if test "x$ac_cv_crosscflags__mcx16" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__mcx16" >&5 +printf "%s\n" "$ac_cv_crosscflags__mcx16" >&6; } +if test "x$ac_cv_crosscflags__mcx16" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -mcx16" fi ;;
aarch64) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wno-format" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wno-format... " >&6; } -if ${ac_cv_crosscflags__Wno_format+:} false; then :
- $as_echo_n "(cached) " >&6
-else
aarch64) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wno-format" >&5
+printf %s "checking whether the cross-compiler supports -Wno-format... " >&6; } +if test ${ac_cv_crosscflags__Wno_format+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10545,20 +12356,22 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wno_format=yes -else +else $as_nop ac_cv_crosscflags__Wno_format=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wno_format" >&5 -$as_echo "$ac_cv_crosscflags__Wno_format" >&6; } -if test "x$ac_cv_crosscflags__Wno_format" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wno_format" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wno_format" >&6; } +if test "x$ac_cv_crosscflags__Wno_format" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Wno-format" fi ;; esac @@ -10575,11 +12388,12 @@ fi ;; done fi case $CROSSDEBUG in
*dwarf) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -gdwarf-2" >&5
-$as_echo_n "checking whether the cross-compiler supports -gdwarf-2... " >&6; } -if ${ac_cv_crosscflags__gdwarf_2+:} false; then :
- $as_echo_n "(cached) " >&6
-else
*dwarf) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -gdwarf-2" >&5
+printf %s "checking whether the cross-compiler supports -gdwarf-2... " >&6; } +if test ${ac_cv_crosscflags__gdwarf_2+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10590,27 +12404,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__gdwarf_2=yes -else +else $as_nop ac_cv_crosscflags__gdwarf_2=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__gdwarf_2" >&5 -$as_echo "$ac_cv_crosscflags__gdwarf_2" >&6; } -if test "x$ac_cv_crosscflags__gdwarf_2" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__gdwarf_2" >&5 +printf "%s\n" "$ac_cv_crosscflags__gdwarf_2" >&6; } +if test "x$ac_cv_crosscflags__gdwarf_2" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -gdwarf-2" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -gstrict-dwarf" >&5
-$as_echo_n "checking whether the cross-compiler supports -gstrict-dwarf... " >&6; } -if ${ac_cv_crosscflags__gstrict_dwarf+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -gstrict-dwarf" >&5
+printf %s "checking whether the cross-compiler supports -gstrict-dwarf... " >&6; } +if test ${ac_cv_crosscflags__gstrict_dwarf+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10621,27 +12438,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__gstrict_dwarf=yes -else +else $as_nop ac_cv_crosscflags__gstrict_dwarf=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__gstrict_dwarf" >&5 -$as_echo "$ac_cv_crosscflags__gstrict_dwarf" >&6; } -if test "x$ac_cv_crosscflags__gstrict_dwarf" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__gstrict_dwarf" >&5 +printf "%s\n" "$ac_cv_crosscflags__gstrict_dwarf" >&6; } +if test "x$ac_cv_crosscflags__gstrict_dwarf" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -gstrict-dwarf" fi ;;
pdb) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -gcodeview" >&5
-$as_echo_n "checking whether the cross-compiler supports -gcodeview... " >&6; } -if ${ac_cv_crosscflags__gcodeview+:} false; then :
- $as_echo_n "(cached) " >&6
-else
pdb) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -gcodeview" >&5
+printf %s "checking whether the cross-compiler supports -gcodeview... " >&6; } +if test ${ac_cv_crosscflags__gcodeview+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10652,29 +12472,32 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__gcodeview=yes -else +else $as_nop ac_cv_crosscflags__gcodeview=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__gcodeview" >&5 -$as_echo "$ac_cv_crosscflags__gcodeview" >&6; } -if test "x$ac_cv_crosscflags__gcodeview" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__gcodeview" >&5 +printf "%s\n" "$ac_cv_crosscflags__gcodeview" >&6; } +if test "x$ac_cv_crosscflags__gcodeview" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -gcodeview" fi ;; esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -fexcess-precision=standard" >&5
-$as_echo_n "checking whether the cross-compiler supports -fexcess-precision=standard... " >&6; } -if ${ac_cv_crosscflags__fexcess_precision_standard+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -fexcess-precision=standard" >&5
+printf %s "checking whether the cross-compiler supports -fexcess-precision=standard... " >&6; } +if test ${ac_cv_crosscflags__fexcess_precision_standard+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10685,31 +12508,34 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__fexcess_precision_standard=yes -else +else $as_nop ac_cv_crosscflags__fexcess_precision_standard=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__fexcess_precision_standard" >&5 -$as_echo "$ac_cv_crosscflags__fexcess_precision_standard" >&6; } -if test "x$ac_cv_crosscflags__fexcess_precision_standard" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__fexcess_precision_standard" >&5 +printf "%s\n" "$ac_cv_crosscflags__fexcess_precision_standard" >&6; } +if test "x$ac_cv_crosscflags__fexcess_precision_standard" = xyes +then : EXCESS_PRECISION_CFLAGS="-fexcess-precision=standard"
fi
if test "x$enable_werror" = "xyes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Werror" >&5
-$as_echo_n "checking whether the cross-compiler supports -Werror... " >&6; } -if ${ac_cv_crosscflags__Werror+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Werror" >&5
+printf %s "checking whether the cross-compiler supports -Werror... " >&6; } +if test ${ac_cv_crosscflags__Werror+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10720,30 +12546,33 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Werror=yes -else +else $as_nop ac_cv_crosscflags__Werror=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Werror" >&5 -$as_echo "$ac_cv_crosscflags__Werror" >&6; } -if test "x$ac_cv_crosscflags__Werror" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Werror" >&5 +printf "%s\n" "$ac_cv_crosscflags__Werror" >&6; } +if test "x$ac_cv_crosscflags__Werror" = xyes +then : EXTRACROSSCFLAGS="$EXTRACROSSCFLAGS -Werror" fi fi if test "x$enable_build_id" = "xyes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wl,--build-id" >&5
-$as_echo_n "checking whether the cross-compiler supports -Wl,--build-id... " >&6; } -if ${ac_cv_crosscflags__Wl___build_id+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the cross-compiler supports -Wl,--build-id" >&5
+printf %s "checking whether the cross-compiler supports -Wl,--build-id... " >&6; } +if test ${ac_cv_crosscflags__Wl___build_id+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS ac_wine_try_cflags_saved_cc=$CC ac_wine_try_cflags_saved_exeext=$ac_exeext @@ -10754,20 +12583,22 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int __cdecl mainCRTStartup(void) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_crosscflags__Wl___build_id=yes -else +else $as_nop ac_cv_crosscflags__Wl___build_id=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved CC=$ac_wine_try_cflags_saved_cc ac_exeext=$ac_wine_try_cflags_saved_exeext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wl___build_id" >&5 -$as_echo "$ac_cv_crosscflags__Wl___build_id" >&6; } -if test "x$ac_cv_crosscflags__Wl___build_id" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_crosscflags__Wl___build_id" >&5 +printf "%s\n" "$ac_cv_crosscflags__Wl___build_id" >&6; } +if test "x$ac_cv_crosscflags__Wl___build_id" = xyes +then : CROSSCFLAGS="$CROSSCFLAGS -Wl,--build-id" CROSSLDFLAGS="$CROSSLDFLAGS -Wl,--build-id" fi @@ -10777,7 +12608,8 @@ fi CC="$ac_save_CC" fi fi -if test "x$CROSSTARGET" = "x"; then : +if test "x$CROSSTARGET" = "x" +then : case "x$with_mingw" in x) as_fn_append wine_notices "|MinGW compiler not found, cross-compiling PE files won't be supported." ;; xno) ;; @@ -10791,14 +12623,16 @@ fi if test "$ac_cv_header_pthread_h" = "yes" then ac_fn_c_check_func "$LINENO" "pthread_create" "ac_cv_func_pthread_create" -if test "x$ac_cv_func_pthread_create" = xyes; then :
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lpthread" >&5
-$as_echo_n "checking for pthread_create in -lpthread... " >&6; } -if ${ac_cv_lib_pthread_pthread_create+:} false; then :
- $as_echo_n "(cached) " >&6
-else +if test "x$ac_cv_func_pthread_create" = xyes +then :
+else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pthread_create in -lpthread" >&5
+printf %s "checking for pthread_create in -lpthread... " >&6; } +if test ${ac_cv_lib_pthread_pthread_create+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lpthread $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -10806,31 +12640,30 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC
- builtin and then its argument prototype would still apply. */
-#ifdef __cplusplus -extern "C" -#endif
- builtin and then its argument prototype would still apply. */
char pthread_create (); int -main () +main (void) { return pthread_create (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_pthread_pthread_create=yes -else +else $as_nop ac_cv_lib_pthread_pthread_create=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_create" >&5 -$as_echo "$ac_cv_lib_pthread_pthread_create" >&6; } -if test "x$ac_cv_lib_pthread_pthread_create" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_create" >&5 +printf "%s\n" "$ac_cv_lib_pthread_pthread_create" >&6; } +if test "x$ac_cv_lib_pthread_pthread_create" = xyes +then : PTHREAD_LIBS="-lpthread"
fi @@ -10838,7 +12671,8 @@ fi fi
fi -if test "x$ac_cv_func_pthread_create" != xyes -a "x$PTHREAD_LIBS" = x; then : +if test "x$ac_cv_func_pthread_create" != xyes -a "x$PTHREAD_LIBS" = x +then : case "x$with_pthread" in xno) ;; *) as_fn_error $? "pthread ${notice_platform}development files not found. @@ -10849,12 +12683,146 @@ esac fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for X" >&5 -$as_echo_n "checking for X... " >&6; } +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 +printf %s "checking how to run the C preprocessor... " >&6; } +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then
- CPP=
+fi +if test -z "$CPP"; then
- if test ${ac_cv_prog_CPP+y}
+then :
- printf %s "(cached) " >&6
+else $as_nop
# Double quotes because $CC needs to be expanded
- for CPP in "$CC -E" "$CC -E -traditional-cpp" cpp /lib/cpp
- do
ac_preproc_ok=false
+for ac_c_preproc_warn_flag in '' yes +do
- # Use a header file that comes with gcc, so configuring glibc
- # with a fresh cross-compiler works.
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp. "Syntax error" is here to catch this case.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */ +#include <limits.h>
Syntax error
+_ACEOF +if ac_fn_c_try_cpp "$LINENO" +then :
+else $as_nop
- # Broken: fails on valid input.
+continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext
- # OK, works on sane cases. Now check whether nonexistent headers
- # can be detected and how.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */ +#include <ac_nonexistent.h> +_ACEOF +if ac_fn_c_try_cpp "$LINENO" +then :
- # Broken: success on invalid input.
+continue +else $as_nop
- # Passes both tests.
+ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext
+done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok +then :
- break
+fi
- done
- ac_cv_prog_CPP=$CPP
+fi
- CPP=$ac_cv_prog_CPP
+else
- ac_cv_prog_CPP=$CPP
+fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 +printf "%s\n" "$CPP" >&6; } +ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do
- # Use a header file that comes with gcc, so configuring glibc
- # with a fresh cross-compiler works.
- # On the NeXT, cc -E runs the code through the compiler's parser,
- # not just through cpp. "Syntax error" is here to catch this case.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */ +#include <limits.h>
Syntax error
+_ACEOF +if ac_fn_c_try_cpp "$LINENO" +then :
+else $as_nop
- # Broken: fails on valid input.
+continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext
- # OK, works on sane cases. Now check whether nonexistent headers
- # can be detected and how.
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */ +#include <ac_nonexistent.h> +_ACEOF +if ac_fn_c_try_cpp "$LINENO" +then :
- # Broken: success on invalid input.
+continue +else $as_nop
- # Passes both tests.
+ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext
+done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok +then :
+else $as_nop
- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in `$ac_pwd':" >&5
+printf "%s\n" "$as_me: error: in `$ac_pwd':" >&2;} +as_fn_error $? "C preprocessor "$CPP" fails sanity check +See `config.log' for more details" "$LINENO" 5; } +fi
+ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for X" >&5 +printf %s "checking for X... " >&6; }
# Check whether --with-x was given. -if test "${with_x+set}" = set; then : +if test ${with_x+y} +then : withval=$with_x; fi
@@ -10865,12 +12833,41 @@ if test "x$with_x" = xno; then else case $x_includes,$x_libraries in #( *'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #(
- *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- *,NONE | NONE,*) if test ${ac_cv_have_x+y}
+then :
- printf %s "(cached) " >&6
+else $as_nop # One or both of the vars are not set, and there is no cached value. -ac_x_includes=no ac_x_libraries=no -rm -f -r conftest.dir +ac_x_includes=no +ac_x_libraries=no +# Do we need to do anything special at all? +ac_save_LIBS=$LIBS +LIBS="-lX11 $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <X11/Xlib.h> +int +main (void) +{ +XrmInitialize ()
- ;
- return 0;
+} +_ACEOF +if ac_fn_c_try_link "$LINENO" +then :
- # We can compile and link X programs with no special options.
- ac_x_includes=
- ac_x_libraries=
+fi +rm -f core conftest.err conftest.$ac_objext conftest.beam \
- conftest$ac_exeext conftest.$ac_ext
+LIBS="$ac_save_LIBS" +# If that didn't work, only try xmkmf and file system searches +# for native compilation. +if test x"$ac_x_includes" = xno && test "$cross_compiling" = no +then :
- rm -f -r conftest.dir
if mkdir conftest.dir; then cd conftest.dir cat >Imakefile <<'_ACEOF' @@ -10909,7 +12906,7 @@ _ACEOF rm -f -r conftest.dir fi
-# Standard set of common directories for X headers.
- # Standard set of common directories for X headers.
# Check X11 before X11Rn because it is often a symlink to the current release. ac_x_header_dirs=' /usr/X11/include @@ -10936,6 +12933,8 @@ ac_x_header_dirs=' /usr/local/include/X11R5 /usr/local/include/X11R4
+/opt/X11/include
/usr/X386/include /usr/x386/include /usr/XFree86/include/X11 @@ -10957,10 +12956,11 @@ if test "$ac_x_includes" = no; then /* end confdefs.h. */ #include <X11/Xlib.h> _ACEOF -if ac_fn_c_try_cpp "$LINENO"; then : +if ac_fn_c_try_cpp "$LINENO" +then : # We can compile using X headers with no special include directory. ac_x_includes= -else +else $as_nop for ac_dir in $ac_x_header_dirs; do if test -r "$ac_dir/X11/Xlib.h"; then ac_x_includes=$ac_dir @@ -10981,20 +12981,21 @@ if test "$ac_x_libraries" = no; then /* end confdefs.h. */ #include <X11/Xlib.h> int -main () +main (void) { XrmInitialize () ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : LIBS=$ac_save_LIBS # We can link X programs with no special library path. ac_x_libraries= -else +else $as_nop LIBS=$ac_save_LIBS -for ac_dir in `$as_echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` +for ac_dir in `printf "%s\n" "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` do # Don't even attempt the hair of trying to link an X program! for ac_extension in a so sl dylib la dll; do @@ -11005,19 +13006,21 @@ do done done fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi # $ac_x_libraries = no
+fi +# Record the results. case $ac_x_includes,$ac_x_libraries in #(
- no,* | *,no | *'*)
- no,* | *,no | *'*) : # Didn't find X, or a directory has "'" in its name.
- ac_cv_have_x="have_x=no";; #(
- *)
- ac_cv_have_x="have_x=no" ;; #(
- *) : # Record where we found X for the cache. ac_cv_have_x="have_x=yes\ ac_x_includes='$ac_x_includes'\
- ac_x_libraries='$ac_x_libraries'"
- ac_x_libraries='$ac_x_libraries'" ;;
esac fi ;; #( @@ -11027,8 +13030,8 @@ fi fi # $with_x != no
if test "$have_x" != yes; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_x" >&5
-$as_echo "$have_x" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $have_x" >&5
+printf "%s\n" "$have_x" >&6; } no_x=yes else # If each of the values was on the command line, it overrides each guess. @@ -11038,14 +13041,14 @@ else ac_cv_have_x="have_x=yes\ ac_x_includes='$x_includes'\ ac_x_libraries='$x_libraries'"
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: libraries $x_libraries, headers $x_includes" >&5
-$as_echo "libraries $x_libraries, headers $x_includes" >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: libraries $x_libraries, headers $x_includes" >&5
+printf "%s\n" "libraries $x_libraries, headers $x_includes" >&6; } fi
if test "$no_x" = yes; then # Not all programs may use this symbol, but it does not hurt to define it.
-$as_echo "#define X_DISPLAY_MISSING 1" >>confdefs.h +printf "%s\n" "#define X_DISPLAY_MISSING 1" >>confdefs.h
X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS= else @@ -11058,8 +13061,8 @@ else X_LIBS="$X_LIBS -L$x_libraries" # For Solaris; some versions of Sun CC require a space after -R and # others require no space. Words are not sufficient . . . .
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -R must be followed by a space" >&5
-$as_echo_n "checking whether -R must be followed by a space... " >&6; }
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether -R must be followed by a space" >&5
+printf %s "checking whether -R must be followed by a space... " >&6; } ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" ac_xsave_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes @@ -11067,42 +13070,44 @@ $as_echo_n "checking whether -R must be followed by a space... " >&6; } /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; } +if ac_fn_c_try_link "$LINENO" +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } X_LIBS="$X_LIBS -R$x_libraries" -else +else $as_nop LIBS="$ac_xsave_LIBS -R $x_libraries" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; } +if ac_fn_c_try_link "$LINENO" +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; } X_LIBS="$X_LIBS -R $x_libraries" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: neither works" >&5
-$as_echo "neither works" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: neither works" >&5
+printf "%s\n" "neither works" >&6; } fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext ac_c_werror_flag=$ac_xsave_c_werror_flag LIBS=$ac_xsave_LIBS @@ -11125,26 +13130,25 @@ rm -f core conftest.err conftest.$ac_objext \ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XOpenDisplay (); int -main () +main (void) { return XOpenDisplay (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then :
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5
-$as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; } -if ${ac_cv_lib_dnet_dnet_ntoa+:} false; then :
- $as_echo_n "(cached) " >&6
-else +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5
+printf %s "checking for dnet_ntoa in -ldnet... " >&6; } +if test ${ac_cv_lib_dnet_dnet_ntoa+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11153,39 +13157,39 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char dnet_ntoa (); int -main () +main (void) { return dnet_ntoa (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_dnet_dnet_ntoa=yes -else +else $as_nop ac_cv_lib_dnet_dnet_ntoa=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 -$as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; } -if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +printf "%s\n" "$ac_cv_lib_dnet_dnet_ntoa" >&6; } +if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes +then : X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" fi
if test $ac_cv_lib_dnet_dnet_ntoa = no; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5
-$as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; } -if ${ac_cv_lib_dnet_stub_dnet_ntoa+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5
+printf %s "checking for dnet_ntoa in -ldnet_stub... " >&6; } +if test ${ac_cv_lib_dnet_stub_dnet_ntoa+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11194,36 +13198,35 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char dnet_ntoa (); int -main () +main (void) { return dnet_ntoa (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_dnet_stub_dnet_ntoa=yes -else +else $as_nop ac_cv_lib_dnet_stub_dnet_ntoa=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 -$as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } -if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +printf "%s\n" "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } +if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes +then : X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" fi
fi
fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS="$ac_xsave_LIBS"
@@ -11236,16 +13239,18 @@ rm -f core conftest.err conftest.$ac_objext \ # The functions gethostbyname, getservbyname, and inet_addr are # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname" -if test "x$ac_cv_func_gethostbyname" = xyes; then : +if test "x$ac_cv_func_gethostbyname" = xyes +then :
fi
if test $ac_cv_func_gethostbyname = no; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5
-$as_echo_n "checking for gethostbyname in -lnsl... " >&6; } -if ${ac_cv_lib_nsl_gethostbyname+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5
+printf %s "checking for gethostbyname in -lnsl... " >&6; } +if test ${ac_cv_lib_nsl_gethostbyname+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11254,39 +13259,39 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gethostbyname (); int -main () +main (void) { return gethostbyname (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_nsl_gethostbyname=yes -else +else $as_nop ac_cv_lib_nsl_gethostbyname=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5 -$as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } -if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5 +printf "%s\n" "$ac_cv_lib_nsl_gethostbyname" >&6; } +if test "x$ac_cv_lib_nsl_gethostbyname" = xyes +then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" fi
if test $ac_cv_lib_nsl_gethostbyname = no; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5
-$as_echo_n "checking for gethostbyname in -lbsd... " >&6; } -if ${ac_cv_lib_bsd_gethostbyname+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5
+printf %s "checking for gethostbyname in -lbsd... " >&6; } +if test ${ac_cv_lib_bsd_gethostbyname+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11295,30 +13300,29 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gethostbyname (); int -main () +main (void) { return gethostbyname (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_bsd_gethostbyname=yes -else +else $as_nop ac_cv_lib_bsd_gethostbyname=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5 -$as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; } -if test "x$ac_cv_lib_bsd_gethostbyname" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5 +printf "%s\n" "$ac_cv_lib_bsd_gethostbyname" >&6; } +if test "x$ac_cv_lib_bsd_gethostbyname" = xyes +then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" fi
@@ -11333,16 +13337,18 @@ fi # must be given before -lnsl if both are needed. We assume that # if connect needs -lnsl, so does gethostbyname. ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect" -if test "x$ac_cv_func_connect" = xyes; then : +if test "x$ac_cv_func_connect" = xyes +then :
fi
if test $ac_cv_func_connect = no; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5
-$as_echo_n "checking for connect in -lsocket... " >&6; } -if ${ac_cv_lib_socket_connect+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5
+printf %s "checking for connect in -lsocket... " >&6; } +if test ${ac_cv_lib_socket_connect+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11351,30 +13357,29 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char connect (); int -main () +main (void) { return connect (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_socket_connect=yes -else +else $as_nop ac_cv_lib_socket_connect=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5 -$as_echo "$ac_cv_lib_socket_connect" >&6; } -if test "x$ac_cv_lib_socket_connect" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5 +printf "%s\n" "$ac_cv_lib_socket_connect" >&6; } +if test "x$ac_cv_lib_socket_connect" = xyes +then : X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" fi
@@ -11382,16 +13387,18 @@ fi
# Guillermo Gomez says -lposix is necessary on A/UX. ac_fn_c_check_func "$LINENO" "remove" "ac_cv_func_remove"
-if test "x$ac_cv_func_remove" = xyes; then : +if test "x$ac_cv_func_remove" = xyes +then :
fi
if test $ac_cv_func_remove = no; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5
-$as_echo_n "checking for remove in -lposix... " >&6; } -if ${ac_cv_lib_posix_remove+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5
+printf %s "checking for remove in -lposix... " >&6; } +if test ${ac_cv_lib_posix_remove+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11400,30 +13407,29 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char remove (); int -main () +main (void) { return remove (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_posix_remove=yes -else +else $as_nop ac_cv_lib_posix_remove=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5 -$as_echo "$ac_cv_lib_posix_remove" >&6; } -if test "x$ac_cv_lib_posix_remove" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5 +printf "%s\n" "$ac_cv_lib_posix_remove" >&6; } +if test "x$ac_cv_lib_posix_remove" = xyes +then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" fi
@@ -11431,16 +13437,18 @@ fi
# BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. ac_fn_c_check_func "$LINENO" "shmat" "ac_cv_func_shmat"
-if test "x$ac_cv_func_shmat" = xyes; then : +if test "x$ac_cv_func_shmat" = xyes +then :
fi
if test $ac_cv_func_shmat = no; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5
-$as_echo_n "checking for shmat in -lipc... " >&6; } -if ${ac_cv_lib_ipc_shmat+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5
+printf %s "checking for shmat in -lipc... " >&6; } +if test ${ac_cv_lib_ipc_shmat+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11449,30 +13457,29 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char shmat (); int -main () +main (void) { return shmat (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_ipc_shmat=yes -else +else $as_nop ac_cv_lib_ipc_shmat=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5 -$as_echo "$ac_cv_lib_ipc_shmat" >&6; } -if test "x$ac_cv_lib_ipc_shmat" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5 +printf "%s\n" "$ac_cv_lib_ipc_shmat" >&6; } +if test "x$ac_cv_lib_ipc_shmat" = xyes +then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" fi
@@ -11488,11 +13495,12 @@ fi # These have to be linked with before -lX11, unlike the other # libraries we check for below, so use a different variable. # John Interrante, Karl Berry
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5
-$as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; } -if ${ac_cv_lib_ICE_IceConnectionNumber+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5
+printf %s "checking for IceConnectionNumber in -lICE... " >&6; } +if test ${ac_cv_lib_ICE_IceConnectionNumber+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11501,30 +13509,29 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char IceConnectionNumber (); int -main () +main (void) { return IceConnectionNumber (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_ICE_IceConnectionNumber=yes -else +else $as_nop ac_cv_lib_ICE_IceConnectionNumber=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 -$as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; } -if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +printf "%s\n" "$ac_cv_lib_ICE_IceConnectionNumber" >&6; } +if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes +then : X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" fi
@@ -11538,11 +13545,12 @@ then ac_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $X_CFLAGS"
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lX11" >&5
-$as_echo_n "checking for -lX11... " >&6; } -if ${ac_cv_lib_soname_X11+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lX11" >&5
+printf %s "checking for -lX11... " >&6; } +if test ${ac_cv_lib_soname_X11+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lX11 $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11551,146 +13559,292 @@ LIBS="-lX11 $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XCreateWindow (); int -main () +main (void) { return XCreateWindow (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_X11=`$ac_cv_path_LDD conftest.exe | grep "X11" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_X11=`$OTOOL -L conftest$ac_exeext | grep "libX11\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libX11.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_X11=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libX11\.$LIBEXT" | sed -e "s/^.*\[\(libX11\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_X11:+false} :; then :
if ${ac_cv_lib_soname_X11:+false} :
+then : ac_cv_lib_soname_X11=`$LDD conftest$ac_exeext | grep "libX11\.$LIBEXT" | sed -e "s/^.*(libX11.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_X11= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_X11:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_X11:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_X11" >&5
-$as_echo "$ac_cv_lib_soname_X11" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_X11" >&5
+printf "%s\n" "$ac_cv_lib_soname_X11" >&6; }
+printf "%s\n" "#define SONAME_LIBX11 "$ac_cv_lib_soname_X11"" >>confdefs.h
+fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXext" >&5
+printf %s "checking for -lXext... " >&6; } +if test ${ac_cv_lib_soname_Xext+y} +then :
- printf %s "(cached) " >&6
+else $as_nop
- ac_check_soname_save_LIBS=$LIBS
+LIBS="-lXext $X_LIBS -lX11 $X_EXTRA_LIBS $LIBS"
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBX11 "$ac_cv_lib_soname_X11" +/* Override any GCC internal prototype to avoid an error.
- Use char because int might match the return type of a GCC
- builtin and then its argument prototype would still apply. */
+char XextCreateExtension (); +int +main (void) +{ +return XextCreateExtension ();
- ;
- return 0;
+} _ACEOF +if ac_fn_c_try_link "$LINENO" +then :
- case "$LIBEXT" in
- dll) ac_cv_lib_soname_Xext=`$ac_cv_path_LDD conftest.exe | grep "Xext" | sed -e "s/dll.*/dll/"';2,$d'` ;;
- dylib) ac_cv_lib_soname_Xext=`$OTOOL -L conftest$ac_exeext | grep "libXext\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXext.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;;
- *) ac_cv_lib_soname_Xext=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXext\.$LIBEXT" | sed -e "s/^.*\[\(libXext\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_Xext:+false} :
+then :
- ac_cv_lib_soname_Xext=`$LDD conftest$ac_exeext | grep "libXext\.$LIBEXT" | sed -e "s/^.*(libXext.$LIBEXT[^ ]*).*$/\1/"';2,$d'`
+fi ;;
- esac
+else $as_nop
- ac_cv_lib_soname_Xext=
+fi +rm -f core conftest.err conftest.$ac_objext conftest.beam \
- conftest$ac_exeext conftest.$ac_ext
- LIBS=$ac_check_soname_save_LIBS
+fi +if ${ac_cv_lib_soname_Xext:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
+else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xext" >&5
+printf "%s\n" "$ac_cv_lib_soname_Xext" >&6; }
+printf "%s\n" "#define SONAME_LIBXEXT "$ac_cv_lib_soname_Xext"" >>confdefs.h
X_LIBS="$X_LIBS -lXext"
+fi
- X_LIBS="$X_LIBS -lX11"
ac_fn_c_check_header_compile "$LINENO" "X11/Xlib.h" "ac_cv_header_X11_Xlib_h" "#ifdef HAVE_X11_XLIB_H
+# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_Xlib_h" = xyes +then :
- printf "%s\n" "#define HAVE_X11_XLIB_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "X11/XKBlib.h" "ac_cv_header_X11_XKBlib_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_XKBlib_h" = xyes +then :
- printf "%s\n" "#define HAVE_X11_XKBLIB_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "X11/Xutil.h" "ac_cv_header_X11_Xutil_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_Xutil_h" = xyes +then :
- printf "%s\n" "#define HAVE_X11_XUTIL_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "X11/Xcursor/Xcursor.h" "ac_cv_header_X11_Xcursor_Xcursor_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_Xcursor_Xcursor_h" = xyes +then :
- printf "%s\n" "#define HAVE_X11_XCURSOR_XCURSOR_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/shape.h" "ac_cv_header_X11_extensions_shape_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_shape_h" = xyes +then :
- printf "%s\n" "#define HAVE_X11_EXTENSIONS_SHAPE_H 1" >>confdefs.h
+fi +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/XInput.h" "ac_cv_header_X11_extensions_XInput_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_XInput_h" = xyes +then :
- printf "%s\n" "#define HAVE_X11_EXTENSIONS_XINPUT_H 1" >>confdefs.h
fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXext" >&5
-$as_echo_n "checking for -lXext... " >&6; } -if ${ac_cv_lib_soname_Xext+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- ac_check_soname_save_LIBS=$LIBS
-LIBS="-lXext $X_LIBS -lX11 $X_EXTRA_LIBS $LIBS"
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */ +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/XInput2.h" "ac_cv_header_X11_extensions_XInput2_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_XInput2_h" = xyes +then :
- printf "%s\n" "#define HAVE_X11_EXTENSIONS_XINPUT2_H 1" >>confdefs.h
-/* Override any GCC internal prototype to avoid an error.
- Use char because int might match the return type of a GCC
- builtin and then its argument prototype would still apply. */
-#ifdef __cplusplus -extern "C" +fi +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/XShm.h" "ac_cv_header_X11_extensions_XShm_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> #endif -char XextCreateExtension (); -int -main () -{ -return XextCreateExtension ();
- ;
- return 0;
-} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then :
- case "$LIBEXT" in
- dll) ac_cv_lib_soname_Xext=`$ac_cv_path_LDD conftest.exe | grep "Xext" | sed -e "s/dll.*/dll/"';2,$d'` ;;
- dylib) ac_cv_lib_soname_Xext=`$OTOOL -L conftest$ac_exeext | grep "libXext\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXext.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;;
- *) ac_cv_lib_soname_Xext=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXext\.$LIBEXT" | sed -e "s/^.*\[\(libXext\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_Xext:+false} :; then :
- ac_cv_lib_soname_Xext=`$LDD conftest$ac_exeext | grep "libXext\.$LIBEXT" | sed -e "s/^.*(libXext.$LIBEXT[^ ]*).*$/\1/"';2,$d'`
-fi ;;
- esac
-else
- ac_cv_lib_soname_Xext=
+#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_XShm_h" = xyes +then :
- printf "%s\n" "#define HAVE_X11_EXTENSIONS_XSHM_H 1" >>confdefs.h
fi -rm -f core conftest.err conftest.$ac_objext \
- conftest$ac_exeext conftest.$ac_ext
- LIBS=$ac_check_soname_save_LIBS
+ac_fn_c_check_header_compile "$LINENO" "X11/extensions/Xcomposite.h" "ac_cv_header_X11_extensions_Xcomposite_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_Xcomposite_h" = xyes +then :
- printf "%s\n" "#define HAVE_X11_EXTENSIONS_XCOMPOSITE_H 1" >>confdefs.h
fi -if ${ac_cv_lib_soname_Xext:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/Xfixes.h" "ac_cv_header_X11_extensions_Xfixes_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_Xfixes_h" = xyes +then :
- printf "%s\n" "#define HAVE_X11_EXTENSIONS_XFIXES_H 1" >>confdefs.h
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xext" >&5
-$as_echo "$ac_cv_lib_soname_Xext" >&6; } +fi +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/Xinerama.h" "ac_cv_header_X11_extensions_Xinerama_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_Xinerama_h" = xyes +then :
- printf "%s\n" "#define HAVE_X11_EXTENSIONS_XINERAMA_H 1" >>confdefs.h
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXEXT "$ac_cv_lib_soname_Xext" -_ACEOF +fi +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/Xrandr.h" "ac_cv_header_X11_extensions_Xrandr_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_Xrandr_h" = xyes +then :
- printf "%s\n" "#define HAVE_X11_EXTENSIONS_XRANDR_H 1" >>confdefs.h
X_LIBS="$X_LIBS -lXext"
fi
- X_LIBS="$X_LIBS -lX11"
+ac_fn_c_check_header_compile "$LINENO" "X11/extensions/Xrender.h" "ac_cv_header_X11_extensions_Xrender_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_Xrender_h" = xyes +then :
- printf "%s\n" "#define HAVE_X11_EXTENSIONS_XRENDER_H 1" >>confdefs.h
for ac_header in X11/Xlib.h \
X11/XKBlib.h \
X11/Xutil.h \
X11/Xcursor/Xcursor.h \
X11/extensions/shape.h \
X11/extensions/XInput.h \
X11/extensions/XInput2.h \
X11/extensions/XShm.h \
X11/extensions/Xcomposite.h \
X11/extensions/Xfixes.h \
X11/extensions/Xinerama.h \
X11/extensions/Xrandr.h \
X11/extensions/Xrender.h \
X11/extensions/xf86vmode.h \
X11/extensions/xf86vmproto.h
-do :
- as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#ifdef HAVE_X11_XLIB_H +fi +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/xf86vmode.h" "ac_cv_header_X11_extensions_xf86vmode_h" "#ifdef HAVE_X11_XLIB_H # include <X11/Xlib.h> #endif #ifdef HAVE_X11_XUTIL_H # include <X11/Xutil.h> #endif " -if eval test "x$"$as_ac_Header"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +if test "x$ac_cv_header_X11_extensions_xf86vmode_h" = xyes +then :
- printf "%s\n" "#define HAVE_X11_EXTENSIONS_XF86VMODE_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "X11/extensions/xf86vmproto.h" "ac_cv_header_X11_extensions_xf86vmproto_h" "#ifdef HAVE_X11_XLIB_H +# include <X11/Xlib.h> +#endif +#ifdef HAVE_X11_XUTIL_H +# include <X11/Xutil.h> +#endif +" +if test "x$ac_cv_header_X11_extensions_xf86vmproto_h" = xyes +then :
- printf "%s\n" "#define HAVE_X11_EXTENSIONS_XF86VMPROTO_H 1" >>confdefs.h
-done +fi
if test "$ac_cv_header_X11_XKBlib_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for XkbQueryExtension in -lX11" >&5
-$as_echo_n "checking for XkbQueryExtension in -lX11... " >&6; } -if ${ac_cv_lib_X11_XkbQueryExtension+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for XkbQueryExtension in -lX11" >&5
+printf %s "checking for XkbQueryExtension in -lX11... " >&6; } +if test ${ac_cv_lib_X11_XkbQueryExtension+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11699,32 +13853,31 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XkbQueryExtension (); int -main () +main (void) { return XkbQueryExtension (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_X11_XkbQueryExtension=yes -else +else $as_nop ac_cv_lib_X11_XkbQueryExtension=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_X11_XkbQueryExtension" >&5 -$as_echo "$ac_cv_lib_X11_XkbQueryExtension" >&6; } -if test "x$ac_cv_lib_X11_XkbQueryExtension" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_X11_XkbQueryExtension" >&5 +printf "%s\n" "$ac_cv_lib_X11_XkbQueryExtension" >&6; } +if test "x$ac_cv_lib_X11_XkbQueryExtension" = xyes +then :
-$as_echo "#define HAVE_XKB 1" >>confdefs.h +printf "%s\n" "#define HAVE_XKB 1" >>confdefs.h
fi
@@ -11732,11 +13885,12 @@ fi
if test "$ac_cv_header_X11_Xcursor_Xcursor_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXcursor" >&5
-$as_echo_n "checking for -lXcursor... " >&6; } -if ${ac_cv_lib_soname_Xcursor+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXcursor" >&5
+printf %s "checking for -lXcursor... " >&6; } +if test ${ac_cv_lib_soname_Xcursor+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXcursor $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11745,50 +13899,49 @@ LIBS="-lXcursor $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XcursorImageLoadCursor (); int -main () +main (void) { return XcursorImageLoadCursor (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xcursor=`$ac_cv_path_LDD conftest.exe | grep "Xcursor" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xcursor=`$OTOOL -L conftest$ac_exeext | grep "libXcursor\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXcursor.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xcursor=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXcursor\.$LIBEXT" | sed -e "s/^.*\[\(libXcursor\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_Xcursor:+false} :; then :
if ${ac_cv_lib_soname_Xcursor:+false} :
+then : ac_cv_lib_soname_Xcursor=`$LDD conftest$ac_exeext | grep "libXcursor\.$LIBEXT" | sed -e "s/^.*(libXcursor.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xcursor= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xcursor:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xcursor:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xcursor" >&5
-$as_echo "$ac_cv_lib_soname_Xcursor" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xcursor" >&5
+printf "%s\n" "$ac_cv_lib_soname_Xcursor" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXCURSOR "$ac_cv_lib_soname_Xcursor" -_ACEOF +printf "%s\n" "#define SONAME_LIBXCURSOR "$ac_cv_lib_soname_Xcursor"" >>confdefs.h
fi fi
if test "x$ac_cv_lib_soname_Xcursor" = "x"; then :
if test "x$ac_cv_lib_soname_Xcursor" = "x"
+then : case "x$with_xcursor" in x) as_fn_append wine_notices "|libxcursor ${notice_platform}development files not found, the Xcursor extension won't be supported." ;; xno) ;; @@ -11800,11 +13953,12 @@ fi
if test "$ac_cv_header_X11_extensions_XInput_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXi" >&5
-$as_echo_n "checking for -lXi... " >&6; } -if ${ac_cv_lib_soname_Xi+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXi" >&5
+printf %s "checking for -lXi... " >&6; } +if test ${ac_cv_lib_soname_Xi+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXi $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11813,50 +13967,49 @@ LIBS="-lXi $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XOpenDevice (); int -main () +main (void) { return XOpenDevice (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xi=`$ac_cv_path_LDD conftest.exe | grep "Xi" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xi=`$OTOOL -L conftest$ac_exeext | grep "libXi\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXi.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xi=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXi\.$LIBEXT" | sed -e "s/^.*\[\(libXi\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_Xi:+false} :; then :
if ${ac_cv_lib_soname_Xi:+false} :
+then : ac_cv_lib_soname_Xi=`$LDD conftest$ac_exeext | grep "libXi\.$LIBEXT" | sed -e "s/^.*(libXi.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xi= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xi:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xi:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xi" >&5
-$as_echo "$ac_cv_lib_soname_Xi" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xi" >&5
+printf "%s\n" "$ac_cv_lib_soname_Xi" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXI "$ac_cv_lib_soname_Xi" -_ACEOF +printf "%s\n" "#define SONAME_LIBXI "$ac_cv_lib_soname_Xi"" >>confdefs.h
fi fi
if test "x$ac_cv_lib_soname_Xi" = "x"; then :
if test "x$ac_cv_lib_soname_Xi" = "x"
+then : case "x$with_xinput" in x) as_fn_append wine_notices "|libxi ${notice_platform}development files not found, the Xinput extension won't be supported." ;; xno) ;; @@ -11868,7 +14021,8 @@ fi
if test "x$ac_cv_lib_soname_Xi" != x then
if test "$ac_cv_header_X11_extensions_XInput2_h" != "yes"; then :
if test "$ac_cv_header_X11_extensions_XInput2_h" != "yes"
+then : case "x$with_xinput2" in x) as_fn_append wine_notices "|XInput2 headers not found, the XInput 2 extension won't be supported." ;; xno) ;; @@ -11881,11 +14035,12 @@ fi
if test "$ac_cv_header_X11_extensions_XShm_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for XShmQueryExtension in -lXext" >&5
-$as_echo_n "checking for XShmQueryExtension in -lXext... " >&6; } -if ${ac_cv_lib_Xext_XShmQueryExtension+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for XShmQueryExtension in -lXext" >&5
+printf %s "checking for XShmQueryExtension in -lXext... " >&6; } +if test ${ac_cv_lib_Xext_XShmQueryExtension+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11894,37 +14049,37 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XShmQueryExtension (); int -main () +main (void) { return XShmQueryExtension (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_Xext_XShmQueryExtension=yes -else +else $as_nop ac_cv_lib_Xext_XShmQueryExtension=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_XShmQueryExtension" >&5 -$as_echo "$ac_cv_lib_Xext_XShmQueryExtension" >&6; } -if test "x$ac_cv_lib_Xext_XShmQueryExtension" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_XShmQueryExtension" >&5 +printf "%s\n" "$ac_cv_lib_Xext_XShmQueryExtension" >&6; } +if test "x$ac_cv_lib_Xext_XShmQueryExtension" = xyes +then :
-$as_echo "#define HAVE_LIBXXSHM 1" >>confdefs.h +printf "%s\n" "#define HAVE_LIBXXSHM 1" >>confdefs.h
fi
fi
if test "$ac_cv_lib_Xext_XShmQueryExtension" != "yes"; then :
if test "$ac_cv_lib_Xext_XShmQueryExtension" != "yes"
+then : case "x$with_xshm" in x) as_fn_append wine_notices "|XShm ${notice_platform}development files not found, X Shared Memory won't be supported." ;; xno) ;; @@ -11936,11 +14091,12 @@ fi
if test "$ac_cv_header_X11_extensions_shape_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for XShapeQueryExtension in -lXext" >&5
-$as_echo_n "checking for XShapeQueryExtension in -lXext... " >&6; } -if ${ac_cv_lib_Xext_XShapeQueryExtension+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for XShapeQueryExtension in -lXext" >&5
+printf %s "checking for XShapeQueryExtension in -lXext... " >&6; } +if test ${ac_cv_lib_Xext_XShapeQueryExtension+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -11949,37 +14105,37 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XShapeQueryExtension (); int -main () +main (void) { return XShapeQueryExtension (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_Xext_XShapeQueryExtension=yes -else +else $as_nop ac_cv_lib_Xext_XShapeQueryExtension=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_XShapeQueryExtension" >&5 -$as_echo "$ac_cv_lib_Xext_XShapeQueryExtension" >&6; } -if test "x$ac_cv_lib_Xext_XShapeQueryExtension" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_XShapeQueryExtension" >&5 +printf "%s\n" "$ac_cv_lib_Xext_XShapeQueryExtension" >&6; } +if test "x$ac_cv_lib_Xext_XShapeQueryExtension" = xyes +then :
-$as_echo "#define HAVE_LIBXSHAPE 1" >>confdefs.h +printf "%s\n" "#define HAVE_LIBXSHAPE 1" >>confdefs.h
fi
fi
if test "$ac_cv_lib_Xext_XShapeQueryExtension" != "yes"; then :
if test "$ac_cv_lib_Xext_XShapeQueryExtension" != "yes"
+then : case "x$with_xshape" in x) as_fn_append wine_notices "|XShape ${notice_platform}development files not found, XShape won't be supported." ;; xno) ;; @@ -11991,11 +14147,12 @@ fi
if test "$ac_cv_header_X11_extensions_xf86vmode_h" = "yes" -o "$ac_cv_header_X11_extensions_xf86vmproto_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXxf86vm" >&5
-$as_echo_n "checking for -lXxf86vm... " >&6; } -if ${ac_cv_lib_soname_Xxf86vm+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXxf86vm" >&5
+printf %s "checking for -lXxf86vm... " >&6; } +if test ${ac_cv_lib_soname_Xxf86vm+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXxf86vm $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12004,50 +14161,49 @@ LIBS="-lXxf86vm $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XF86VidModeQueryExtension (); int -main () +main (void) { return XF86VidModeQueryExtension (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xxf86vm=`$ac_cv_path_LDD conftest.exe | grep "Xxf86vm" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xxf86vm=`$OTOOL -L conftest$ac_exeext | grep "libXxf86vm\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXxf86vm.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xxf86vm=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXxf86vm\.$LIBEXT" | sed -e "s/^.*\[\(libXxf86vm\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_Xxf86vm:+false} :; then :
if ${ac_cv_lib_soname_Xxf86vm:+false} :
+then : ac_cv_lib_soname_Xxf86vm=`$LDD conftest$ac_exeext | grep "libXxf86vm\.$LIBEXT" | sed -e "s/^.*(libXxf86vm.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xxf86vm= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xxf86vm:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xxf86vm:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xxf86vm" >&5
-$as_echo "$ac_cv_lib_soname_Xxf86vm" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xxf86vm" >&5
+printf "%s\n" "$ac_cv_lib_soname_Xxf86vm" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXXF86VM "$ac_cv_lib_soname_Xxf86vm" -_ACEOF +printf "%s\n" "#define SONAME_LIBXXF86VM "$ac_cv_lib_soname_Xxf86vm"" >>confdefs.h
fi fi
if test "x$ac_cv_lib_soname_Xxf86vm" = "x"; then :
if test "x$ac_cv_lib_soname_Xxf86vm" = "x"
+then : case "x$with_xxf86vm" in x) as_fn_append wine_notices "|libXxf86vm ${notice_platform}development files not found, XFree86 Vidmode won't be supported." ;; xno) ;; @@ -12059,11 +14215,12 @@ fi
if test "$ac_cv_header_X11_extensions_Xrender_h" = "yes" -a "x$ac_cv_lib_soname_X11" != "x" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXrender" >&5
-$as_echo_n "checking for -lXrender... " >&6; } -if ${ac_cv_lib_soname_Xrender+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXrender" >&5
+printf %s "checking for -lXrender... " >&6; } +if test ${ac_cv_lib_soname_Xrender+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXrender $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12072,51 +14229,50 @@ LIBS="-lXrender $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XRenderQueryExtension (); int -main () +main (void) { return XRenderQueryExtension (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xrender=`$ac_cv_path_LDD conftest.exe | grep "Xrender" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xrender=`$OTOOL -L conftest$ac_exeext | grep "libXrender\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXrender.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xrender=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXrender\.$LIBEXT" | sed -e "s/^.*\[\(libXrender\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_Xrender:+false} :; then :
if ${ac_cv_lib_soname_Xrender:+false} :
+then : ac_cv_lib_soname_Xrender=`$LDD conftest$ac_exeext | grep "libXrender\.$LIBEXT" | sed -e "s/^.*(libXrender.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xrender= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xrender:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xrender:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xrender" >&5
-$as_echo "$ac_cv_lib_soname_Xrender" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xrender" >&5
+printf "%s\n" "$ac_cv_lib_soname_Xrender" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXRENDER "$ac_cv_lib_soname_Xrender" -_ACEOF +printf "%s\n" "#define SONAME_LIBXRENDER "$ac_cv_lib_soname_Xrender"" >>confdefs.h
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for XRenderSetPictureTransform in -lXrender" >&5
-$as_echo_n "checking for XRenderSetPictureTransform in -lXrender... " >&6; } -if ${ac_cv_lib_Xrender_XRenderSetPictureTransform+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for XRenderSetPictureTransform in -lXrender" >&5
+printf %s "checking for XRenderSetPictureTransform in -lXrender... " >&6; } +if test ${ac_cv_lib_Xrender_XRenderSetPictureTransform+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lXrender $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12125,40 +14281,40 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XRenderSetPictureTransform (); int -main () +main (void) { return XRenderSetPictureTransform (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_Xrender_XRenderSetPictureTransform=yes -else +else $as_nop ac_cv_lib_Xrender_XRenderSetPictureTransform=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xrender_XRenderSetPictureTransform" >&5 -$as_echo "$ac_cv_lib_Xrender_XRenderSetPictureTransform" >&6; } -if test "x$ac_cv_lib_Xrender_XRenderSetPictureTransform" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xrender_XRenderSetPictureTransform" >&5 +printf "%s\n" "$ac_cv_lib_Xrender_XRenderSetPictureTransform" >&6; } +if test "x$ac_cv_lib_Xrender_XRenderSetPictureTransform" = xyes +then :
-$as_echo "#define HAVE_XRENDERSETPICTURETRANSFORM 1" >>confdefs.h +printf "%s\n" "#define HAVE_XRENDERSETPICTURETRANSFORM 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for XRenderCreateLinearGradient in -lXrender" >&5
-$as_echo_n "checking for XRenderCreateLinearGradient in -lXrender... " >&6; } -if ${ac_cv_lib_Xrender_XRenderCreateLinearGradient+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for XRenderCreateLinearGradient in -lXrender" >&5
+printf %s "checking for XRenderCreateLinearGradient in -lXrender... " >&6; } +if test ${ac_cv_lib_Xrender_XRenderCreateLinearGradient+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lXrender $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12167,39 +14323,39 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XRenderCreateLinearGradient (); int -main () +main (void) { return XRenderCreateLinearGradient (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_Xrender_XRenderCreateLinearGradient=yes -else +else $as_nop ac_cv_lib_Xrender_XRenderCreateLinearGradient=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xrender_XRenderCreateLinearGradient" >&5 -$as_echo "$ac_cv_lib_Xrender_XRenderCreateLinearGradient" >&6; } -if test "x$ac_cv_lib_Xrender_XRenderCreateLinearGradient" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xrender_XRenderCreateLinearGradient" >&5 +printf "%s\n" "$ac_cv_lib_Xrender_XRenderCreateLinearGradient" >&6; } +if test "x$ac_cv_lib_Xrender_XRenderCreateLinearGradient" = xyes +then :
-$as_echo "#define HAVE_XRENDERCREATELINEARGRADIENT 1" >>confdefs.h +printf "%s\n" "#define HAVE_XRENDERCREATELINEARGRADIENT 1" >>confdefs.h
fi
fi
fi
if test "x$ac_cv_lib_soname_Xrender" = "x"; then :
if test "x$ac_cv_lib_soname_Xrender" = "x"
+then : case "x$with_xrender" in x) as_fn_append wine_warnings "|libxrender ${notice_platform}development files not found, XRender won't be supported." ;; xno) ;; @@ -12216,19 +14372,21 @@ fi #include <X11/Xlib.h> #include <X11/extensions/Xrandr.h> int -main () +main (void) { static typeof(XRRSetScreenConfigAndRate) * func; if (func) return 0; ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXrandr" >&5
-$as_echo_n "checking for -lXrandr... " >&6; } -if ${ac_cv_lib_soname_Xrandr+:} false; then :
- $as_echo_n "(cached) " >&6
-else +if ac_fn_c_try_compile "$LINENO" +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXrandr" >&5
+printf %s "checking for -lXrandr... " >&6; } +if test ${ac_cv_lib_soname_Xrandr+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXrandr $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12237,71 +14395,71 @@ LIBS="-lXrandr $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XRRQueryExtension (); int -main () +main (void) { return XRRQueryExtension (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xrandr=`$ac_cv_path_LDD conftest.exe | grep "Xrandr" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xrandr=`$OTOOL -L conftest$ac_exeext | grep "libXrandr\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXrandr.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xrandr=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXrandr\.$LIBEXT" | sed -e "s/^.*\[\(libXrandr\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_Xrandr:+false} :; then :
if ${ac_cv_lib_soname_Xrandr:+false} :
+then : ac_cv_lib_soname_Xrandr=`$LDD conftest$ac_exeext | grep "libXrandr\.$LIBEXT" | sed -e "s/^.*(libXrandr.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xrandr= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xrandr:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xrandr:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xrandr" >&5
-$as_echo "$ac_cv_lib_soname_Xrandr" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xrandr" >&5
+printf "%s\n" "$ac_cv_lib_soname_Xrandr" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXRANDR "$ac_cv_lib_soname_Xrandr" -_ACEOF +printf "%s\n" "#define SONAME_LIBXRANDR "$ac_cv_lib_soname_Xrandr"" >>confdefs.h
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */ #include <X11/Xlib.h> #include <X11/extensions/Xrandr.h> int -main () +main (void) { static typeof(XRRGetProviderResources) *f; if (f) return 0; ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then :
-$as_echo "#define HAVE_XRRGETPROVIDERRESOURCES 1" >>confdefs.h +printf "%s\n" "#define HAVE_XRRGETPROVIDERRESOURCES 1" >>confdefs.h
-else +else $as_nop as_fn_append wine_notices "|libxrandr ${notice_platform}development files too old, XRandR display device handler won't be supported." fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi
if test "x$ac_cv_lib_soname_Xrandr" = "x"; then :
if test "x$ac_cv_lib_soname_Xrandr" = "x"
+then : case "x$with_xrandr" in x) as_fn_append wine_notices "|libxrandr ${notice_platform}development files not found, XRandr won't be supported." ;; xno) ;; @@ -12318,19 +14476,21 @@ fi #include <X11/Xlib.h> #include <X11/extensions/Xfixes.h> int -main () +main (void) { static typeof(XFixesQueryVersion) * func; if (func) return 0; ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXfixes" >&5
-$as_echo_n "checking for -lXfixes... " >&6; } -if ${ac_cv_lib_soname_Xfixes+:} false; then :
- $as_echo_n "(cached) " >&6
-else +if ac_fn_c_try_compile "$LINENO" +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXfixes" >&5
+printf %s "checking for -lXfixes... " >&6; } +if test ${ac_cv_lib_soname_Xfixes+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXfixes $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12339,52 +14499,51 @@ LIBS="-lXfixes $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XFixesQueryVersion (); int -main () +main (void) { return XFixesQueryVersion (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xfixes=`$ac_cv_path_LDD conftest.exe | grep "Xfixes" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xfixes=`$OTOOL -L conftest$ac_exeext | grep "libXfixes\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXfixes.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xfixes=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXfixes\.$LIBEXT" | sed -e "s/^.*\[\(libXfixes\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_Xfixes:+false} :; then :
if ${ac_cv_lib_soname_Xfixes:+false} :
+then : ac_cv_lib_soname_Xfixes=`$LDD conftest$ac_exeext | grep "libXfixes\.$LIBEXT" | sed -e "s/^.*(libXfixes.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xfixes= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xfixes:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xfixes:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xfixes" >&5
-$as_echo "$ac_cv_lib_soname_Xfixes" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xfixes" >&5
+printf "%s\n" "$ac_cv_lib_soname_Xfixes" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXFIXES "$ac_cv_lib_soname_Xfixes" -_ACEOF +printf "%s\n" "#define SONAME_LIBXFIXES "$ac_cv_lib_soname_Xfixes"" >>confdefs.h
fi fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi
if test "x$ac_cv_lib_soname_Xfixes" = "x"; then :
if test "x$ac_cv_lib_soname_Xfixes" = "x"
+then : case "x$with_xfixes" in x) as_fn_append wine_notices "|libxfixes ${notice_platform}development files not found, Xfixes won't be supported." ;; xno) ;; @@ -12401,19 +14560,21 @@ fi #include <X11/Xlib.h> #include <X11/extensions/Xinerama.h> int -main () +main (void) { static typeof(XineramaQueryScreens) * func; if (func) return 0; ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXinerama" >&5
-$as_echo_n "checking for -lXinerama... " >&6; } -if ${ac_cv_lib_soname_Xinerama+:} false; then :
- $as_echo_n "(cached) " >&6
-else +if ac_fn_c_try_compile "$LINENO" +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXinerama" >&5
+printf %s "checking for -lXinerama... " >&6; } +if test ${ac_cv_lib_soname_Xinerama+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXinerama $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12422,52 +14583,51 @@ LIBS="-lXinerama $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XineramaQueryScreens (); int -main () +main (void) { return XineramaQueryScreens (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xinerama=`$ac_cv_path_LDD conftest.exe | grep "Xinerama" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xinerama=`$OTOOL -L conftest$ac_exeext | grep "libXinerama\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXinerama.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xinerama=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXinerama\.$LIBEXT" | sed -e "s/^.*\[\(libXinerama\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_Xinerama:+false} :; then :
if ${ac_cv_lib_soname_Xinerama:+false} :
+then : ac_cv_lib_soname_Xinerama=`$LDD conftest$ac_exeext | grep "libXinerama\.$LIBEXT" | sed -e "s/^.*(libXinerama.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xinerama= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xinerama:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xinerama:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xinerama" >&5
-$as_echo "$ac_cv_lib_soname_Xinerama" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xinerama" >&5
+printf "%s\n" "$ac_cv_lib_soname_Xinerama" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXINERAMA "$ac_cv_lib_soname_Xinerama" -_ACEOF +printf "%s\n" "#define SONAME_LIBXINERAMA "$ac_cv_lib_soname_Xinerama"" >>confdefs.h
fi fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi
if test "x$ac_cv_lib_soname_Xinerama" = "x"; then :
if test "x$ac_cv_lib_soname_Xinerama" = "x"
+then : case "x$with_xinerama" in x) as_fn_append wine_notices "|libxinerama ${notice_platform}development files not found, multi-monitor setups won't be supported." ;; xno) ;; @@ -12479,11 +14639,12 @@ fi
if test "$ac_cv_header_X11_extensions_Xcomposite_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lXcomposite" >&5
-$as_echo_n "checking for -lXcomposite... " >&6; } -if ${ac_cv_lib_soname_Xcomposite+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lXcomposite" >&5
+printf %s "checking for -lXcomposite... " >&6; } +if test ${ac_cv_lib_soname_Xcomposite+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lXcomposite $X_LIBS $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12492,50 +14653,49 @@ LIBS="-lXcomposite $X_LIBS $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char XCompositeRedirectWindow (); int -main () +main (void) { return XCompositeRedirectWindow (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_Xcomposite=`$ac_cv_path_LDD conftest.exe | grep "Xcomposite" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_Xcomposite=`$OTOOL -L conftest$ac_exeext | grep "libXcomposite\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libXcomposite.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_Xcomposite=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libXcomposite\.$LIBEXT" | sed -e "s/^.*\[\(libXcomposite\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_Xcomposite:+false} :; then :
if ${ac_cv_lib_soname_Xcomposite:+false} :
+then : ac_cv_lib_soname_Xcomposite=`$LDD conftest$ac_exeext | grep "libXcomposite\.$LIBEXT" | sed -e "s/^.*(libXcomposite.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_Xcomposite= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_Xcomposite:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_Xcomposite:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xcomposite" >&5
-$as_echo "$ac_cv_lib_soname_Xcomposite" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_Xcomposite" >&5
+printf "%s\n" "$ac_cv_lib_soname_Xcomposite" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXCOMPOSITE "$ac_cv_lib_soname_Xcomposite" -_ACEOF +printf "%s\n" "#define SONAME_LIBXCOMPOSITE "$ac_cv_lib_soname_Xcomposite"" >>confdefs.h
fi fi
if test "x$ac_cv_lib_soname_Xcomposite" = "x"; then :
if test "x$ac_cv_lib_soname_Xcomposite" = "x"
+then : case "x$with_xcomposite" in x) as_fn_append wine_notices "|libxcomposite ${notice_platform}development files not found, Xcomposite won't be supported." ;; xno) ;; @@ -12549,11 +14709,10 @@ fi #include <X11/Xlib.h> #endif " -if test "x$ac_cv_member_XICCallback_callback" = xyes; then : +if test "x$ac_cv_member_XICCallback_callback" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_XICCALLBACK_CALLBACK 1 -_ACEOF +printf "%s\n" "#define HAVE_XICCALLBACK_CALLBACK 1" >>confdefs.h
fi @@ -12561,11 +14720,10 @@ ac_fn_c_check_member "$LINENO" "XEvent" "xcookie" "ac_cv_member_XEvent_xcookie" #include <X11/Xlib.h> #endif " -if test "x$ac_cv_member_XEvent_xcookie" = xyes; then : +if test "x$ac_cv_member_XEvent_xcookie" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_XEVENT_XCOOKIE 1 -_ACEOF +printf "%s\n" "#define HAVE_XEVENT_XCOOKIE 1" >>confdefs.h
fi @@ -12575,11 +14733,12 @@ fi opengl_msg="" if test "x$with_opengl" != "xno" then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lGL" >&5
-$as_echo_n "checking for -lGL... " >&6; } -if ${ac_cv_lib_soname_GL+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lGL" >&5
+printf %s "checking for -lGL... " >&6; } +if test ${ac_cv_lib_soname_GL+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lGL $X_LIBS -lm $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12588,42 +14747,43 @@ LIBS="-lGL $X_LIBS -lm $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char glXCreateContext (); int -main () +main (void) { return glXCreateContext (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_GL=`$ac_cv_path_LDD conftest.exe | grep "GL" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_GL=`$OTOOL -L conftest$ac_exeext | grep "libGL\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libGL.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_GL=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libGL\.$LIBEXT" | sed -e "s/^.*\[\(libGL\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_GL:+false} :; then :
if ${ac_cv_lib_soname_GL:+false} :
+then : ac_cv_lib_soname_GL=`$LDD conftest$ac_exeext | grep "libGL\.$LIBEXT" | sed -e "s/^.*(libGL.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_GL= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_GL:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lGL" >&5
-$as_echo_n "checking for -lGL... " >&6; } -if ${ac_cv_lib_soname_GL+:} false; then :
- $as_echo_n "(cached) " >&6
-else +if ${ac_cv_lib_soname_GL:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lGL" >&5
+printf %s "checking for -lGL... " >&6; } +if test ${ac_cv_lib_soname_GL+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lGL $X_LIBS -lm $X_EXTRA_LIBS -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12632,37 +14792,37 @@ LIBS="-lGL $X_LIBS -lm $X_EXTRA_LIBS -dylib_file /System/Library/Frameworks/Open /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char glXCreateContext (); int -main () +main (void) { return glXCreateContext (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_GL=`$ac_cv_path_LDD conftest.exe | grep "GL" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_GL=`$OTOOL -L conftest$ac_exeext | grep "libGL\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libGL.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_GL=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libGL\.$LIBEXT" | sed -e "s/^.*\[\(libGL\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_GL:+false} :; then :
if ${ac_cv_lib_soname_GL:+false} :
+then : ac_cv_lib_soname_GL=`$LDD conftest$ac_exeext | grep "libGL\.$LIBEXT" | sed -e "s/^.*(libGL.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_GL= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_GL:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_GL:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; } if test -f /usr/X11R6/lib/libGL.a then opengl_msg="/usr/X11R6/lib/libGL.a is present on your system. @@ -12670,33 +14830,30 @@ This probably prevents linking to OpenGL. Try deleting the file and restarting c else opengl_msg="No OpenGL library found on this system." fi -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_GL" >&5
-$as_echo "$ac_cv_lib_soname_GL" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_GL" >&5
+printf "%s\n" "$ac_cv_lib_soname_GL" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBGL "$ac_cv_lib_soname_GL" -_ACEOF +printf "%s\n" "#define SONAME_LIBGL "$ac_cv_lib_soname_GL"" >>confdefs.h
OPENGL_LIBS="-Xlinker -dylib_file -Xlinker /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -lGL"
fi -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_GL" >&5
-$as_echo "$ac_cv_lib_soname_GL" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_GL" >&5
+printf "%s\n" "$ac_cv_lib_soname_GL" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBGL "$ac_cv_lib_soname_GL" -_ACEOF +printf "%s\n" "#define SONAME_LIBGL "$ac_cv_lib_soname_GL"" >>confdefs.h
OPENGL_LIBS="-lGL"
fi if test "x$with_osmesa" != "xno" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lOSMesa" >&5
-$as_echo_n "checking for -lOSMesa... " >&6; } -if ${ac_cv_lib_soname_OSMesa+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lOSMesa" >&5
+printf %s "checking for -lOSMesa... " >&6; } +if test ${ac_cv_lib_soname_OSMesa+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lOSMesa $X_LIBS -lm $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12705,49 +14862,48 @@ LIBS="-lOSMesa $X_LIBS -lm $X_EXTRA_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char OSMesaGetProcAddress (); int -main () +main (void) { return OSMesaGetProcAddress (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_OSMesa=`$ac_cv_path_LDD conftest.exe | grep "OSMesa" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_OSMesa=`$OTOOL -L conftest$ac_exeext | grep "libOSMesa\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libOSMesa.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_OSMesa=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libOSMesa\.$LIBEXT" | sed -e "s/^.*\[\(libOSMesa\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_OSMesa:+false} :; then :
if ${ac_cv_lib_soname_OSMesa:+false} :
+then : ac_cv_lib_soname_OSMesa=`$LDD conftest$ac_exeext | grep "libOSMesa\.$LIBEXT" | sed -e "s/^.*(libOSMesa.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_OSMesa= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_OSMesa:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_OSMesa:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_OSMesa" >&5
-$as_echo "$ac_cv_lib_soname_OSMesa" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_OSMesa" >&5
+printf "%s\n" "$ac_cv_lib_soname_OSMesa" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBOSMESA "$ac_cv_lib_soname_OSMesa" -_ACEOF +printf "%s\n" "#define SONAME_LIBOSMESA "$ac_cv_lib_soname_OSMesa"" >>confdefs.h
fi
if test "x$ac_cv_lib_soname_OSMesa" = "x"; then :
if test "x$ac_cv_lib_soname_OSMesa" = "x"
+then : case "x$with_osmesa" in x) as_fn_append wine_notices "|libOSMesa ${notice_platform}development files not found (or too old), OpenGL rendering in bitmaps won't be supported." ;; xno) ;; @@ -12758,7 +14914,8 @@ esac fi fi fi
- if test -n "$opengl_msg"; then :
- if test -n "$opengl_msg"
+then : case "x$with_opengl" in x) as_fn_append wine_warnings "|$opengl_msg OpenGL and Direct3D won't be supported." ;; @@ -12778,7 +14935,8 @@ fi
if test "$enable_wineandroid_drv$enable_winemac_drv" = "nono" then
- if test "x$X_LIBS" = "x"; then :
- if test "x$X_LIBS" = "x"
+then : case "x$with_x" in xno) ;; *) as_fn_error $? "X ${notice_platform}development files not found. Wine will be built @@ -12789,7 +14947,8 @@ esac enable_winex11_drv=${enable_winex11_drv:-no} fi else
- if test "x$X_LIBS" = "x"; then :
- if test "x$X_LIBS" = "x"
+then : case "x$with_x" in x) as_fn_append wine_notices "|X ${notice_platform}development files not found, the X11 driver won't be supported." ;; xno) ;; @@ -12802,11 +14961,12 @@ fi
if test "$ac_cv_header_CL_cl_h" = "yes" then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for clGetPlatformInfo in -lOpenCL" >&5
-$as_echo_n "checking for clGetPlatformInfo in -lOpenCL... " >&6; } -if ${ac_cv_lib_OpenCL_clGetPlatformInfo+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for clGetPlatformInfo in -lOpenCL" >&5
+printf %s "checking for clGetPlatformInfo in -lOpenCL... " >&6; } +if test ${ac_cv_lib_OpenCL_clGetPlatformInfo+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lOpenCL $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12815,36 +14975,36 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char clGetPlatformInfo (); int -main () +main (void) { return clGetPlatformInfo (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_OpenCL_clGetPlatformInfo=yes -else +else $as_nop ac_cv_lib_OpenCL_clGetPlatformInfo=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_OpenCL_clGetPlatformInfo" >&5 -$as_echo "$ac_cv_lib_OpenCL_clGetPlatformInfo" >&6; } -if test "x$ac_cv_lib_OpenCL_clGetPlatformInfo" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_OpenCL_clGetPlatformInfo" >&5 +printf "%s\n" "$ac_cv_lib_OpenCL_clGetPlatformInfo" >&6; } +if test "x$ac_cv_lib_OpenCL_clGetPlatformInfo" = xyes +then : OPENCL_LIBS="-lOpenCL"
fi
fi -if test "x$ac_cv_lib_OpenCL_clGetPlatformInfo" != xyes; then : +if test "x$ac_cv_lib_OpenCL_clGetPlatformInfo" != xyes +then : case "x$with_opencl" in x) as_fn_append wine_notices "|OpenCL ${notice_platform}development files not found, OpenCL won't be supported." ;; xno) ;; @@ -12856,11 +15016,12 @@ fi
if test "$ac_cv_header_pcap_pcap_h" = "yes" then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pcap_create in -lpcap" >&5
-$as_echo_n "checking for pcap_create in -lpcap... " >&6; } -if ${ac_cv_lib_pcap_pcap_create+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pcap_create in -lpcap" >&5
+printf %s "checking for pcap_create in -lpcap... " >&6; } +if test ${ac_cv_lib_pcap_pcap_create+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lpcap $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12869,36 +15030,36 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char pcap_create (); int -main () +main (void) { return pcap_create (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_pcap_pcap_create=yes -else +else $as_nop ac_cv_lib_pcap_pcap_create=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pcap_pcap_create" >&5 -$as_echo "$ac_cv_lib_pcap_pcap_create" >&6; } -if test "x$ac_cv_lib_pcap_pcap_create" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pcap_pcap_create" >&5 +printf "%s\n" "$ac_cv_lib_pcap_pcap_create" >&6; } +if test "x$ac_cv_lib_pcap_pcap_create" = xyes +then : PCAP_LIBS="-lpcap"
fi
fi -if test "x$ac_cv_lib_pcap_pcap_create" != xyes; then : +if test "x$ac_cv_lib_pcap_pcap_create" != xyes +then : case "x$with_pcap" in x) as_fn_append wine_notices "|pcap ${notice_platform}development files not found, wpcap won't be supported." ;; xno) ;; @@ -12911,43 +15072,54 @@ fi
if test "x$with_xml" != "xno" then
- if ${XML2_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${XML2_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : XML2_CFLAGS=`$PKG_CONFIG --cflags libxml-2.0 2>/dev/null` fi fi test "$cross_compiling" = yes || XML2_CFLAGS=${XML2_CFLAGS:-`${XML2_CONFIG:-xml2-config} --cflags 2>/dev/null`} -if ${XML2_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${XML2_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : XML2_LIBS=`$PKG_CONFIG --libs libxml-2.0 2>/dev/null` fi fi test "$cross_compiling" = yes || XML2_LIBS=${XML2_LIBS:-`${XML2_CONFIG:-xml2-config} --libs 2>/dev/null`} XML2_LIBS=${XML2_LIBS:-"-lxml2"} -$as_echo "$as_me:${as_lineno-$LINENO}: libxml-2.0 cflags: $XML2_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libxml-2.0 libs: $XML2_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libxml-2.0 cflags: $XML2_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libxml-2.0 libs: $XML2_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $XML2_CFLAGS" -for ac_header in libxml/parser.h libxml/xmlsave.h libxml/SAX2.h -do :
- as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test "x$"$as_ac_Header"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "libxml/parser.h" "ac_cv_header_libxml_parser_h" "$ac_includes_default" +if test "x$ac_cv_header_libxml_parser_h" = xyes +then :
- printf "%s\n" "#define HAVE_LIBXML_PARSER_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "libxml/xmlsave.h" "ac_cv_header_libxml_xmlsave_h" "$ac_includes_default" +if test "x$ac_cv_header_libxml_xmlsave_h" = xyes +then :
- printf "%s\n" "#define HAVE_LIBXML_XMLSAVE_H 1" >>confdefs.h
-done +fi +ac_fn_c_check_header_compile "$LINENO" "libxml/SAX2.h" "ac_cv_header_libxml_SAX2_h" "$ac_includes_default" +if test "x$ac_cv_header_libxml_SAX2_h" = xyes +then :
- printf "%s\n" "#define HAVE_LIBXML_SAX2_H 1" >>confdefs.h
+fi
if test "$ac_cv_header_libxml_parser_h" = "yes" -a "$ac_cv_header_libxml_xmlsave_h" = "yes" -a "$ac_cv_header_libxml_SAX2_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlParseMemory in -lxml2" >&5
-$as_echo_n "checking for xmlParseMemory in -lxml2... " >&6; } -if ${ac_cv_lib_xml2_xmlParseMemory+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for xmlParseMemory in -lxml2" >&5
+printf %s "checking for xmlParseMemory in -lxml2... " >&6; } +if test ${ac_cv_lib_xml2_xmlParseMemory+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lxml2 $XML2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -12956,42 +15128,42 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char xmlParseMemory (); int -main () +main (void) { return xmlParseMemory (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_xml2_xmlParseMemory=yes -else +else $as_nop ac_cv_lib_xml2_xmlParseMemory=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlParseMemory" >&5 -$as_echo "$ac_cv_lib_xml2_xmlParseMemory" >&6; } -if test "x$ac_cv_lib_xml2_xmlParseMemory" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlParseMemory" >&5 +printf "%s\n" "$ac_cv_lib_xml2_xmlParseMemory" >&6; } +if test "x$ac_cv_lib_xml2_xmlParseMemory" = xyes +then :
-$as_echo "#define HAVE_LIBXML2 1" >>confdefs.h +printf "%s\n" "#define HAVE_LIBXML2 1" >>confdefs.h
-else +else $as_nop XML2_LIBS="" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlReadMemory in -lxml2" >&5
-$as_echo_n "checking for xmlReadMemory in -lxml2... " >&6; } -if ${ac_cv_lib_xml2_xmlReadMemory+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for xmlReadMemory in -lxml2" >&5
+printf %s "checking for xmlReadMemory in -lxml2... " >&6; } +if test ${ac_cv_lib_xml2_xmlReadMemory+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lxml2 $XML2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13000,40 +15172,40 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char xmlReadMemory (); int -main () +main (void) { return xmlReadMemory (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_xml2_xmlReadMemory=yes -else +else $as_nop ac_cv_lib_xml2_xmlReadMemory=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlReadMemory" >&5 -$as_echo "$ac_cv_lib_xml2_xmlReadMemory" >&6; } -if test "x$ac_cv_lib_xml2_xmlReadMemory" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlReadMemory" >&5 +printf "%s\n" "$ac_cv_lib_xml2_xmlReadMemory" >&6; } +if test "x$ac_cv_lib_xml2_xmlReadMemory" = xyes +then :
-$as_echo "#define HAVE_XMLREADMEMORY 1" >>confdefs.h +printf "%s\n" "#define HAVE_XMLREADMEMORY 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlNewDocPI in -lxml2" >&5
-$as_echo_n "checking for xmlNewDocPI in -lxml2... " >&6; } -if ${ac_cv_lib_xml2_xmlNewDocPI+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for xmlNewDocPI in -lxml2" >&5
+printf %s "checking for xmlNewDocPI in -lxml2... " >&6; } +if test ${ac_cv_lib_xml2_xmlNewDocPI+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lxml2 $XML2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13042,40 +15214,40 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char xmlNewDocPI (); int -main () +main (void) { return xmlNewDocPI (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_xml2_xmlNewDocPI=yes -else +else $as_nop ac_cv_lib_xml2_xmlNewDocPI=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlNewDocPI" >&5 -$as_echo "$ac_cv_lib_xml2_xmlNewDocPI" >&6; } -if test "x$ac_cv_lib_xml2_xmlNewDocPI" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlNewDocPI" >&5 +printf "%s\n" "$ac_cv_lib_xml2_xmlNewDocPI" >&6; } +if test "x$ac_cv_lib_xml2_xmlNewDocPI" = xyes +then :
-$as_echo "#define HAVE_XMLNEWDOCPI 1" >>confdefs.h +printf "%s\n" "#define HAVE_XMLNEWDOCPI 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlSchemaSetParserStructuredErrors in -lxml2" >&5
-$as_echo_n "checking for xmlSchemaSetParserStructuredErrors in -lxml2... " >&6; } -if ${ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for xmlSchemaSetParserStructuredErrors in -lxml2" >&5
+printf %s "checking for xmlSchemaSetParserStructuredErrors in -lxml2... " >&6; } +if test ${ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lxml2 $XML2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13084,40 +15256,40 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char xmlSchemaSetParserStructuredErrors (); int -main () +main (void) { return xmlSchemaSetParserStructuredErrors (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors=yes -else +else $as_nop ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors" >&5 -$as_echo "$ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors" >&6; } -if test "x$ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors" >&5 +printf "%s\n" "$ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors" >&6; } +if test "x$ac_cv_lib_xml2_xmlSchemaSetParserStructuredErrors" = xyes +then :
-$as_echo "#define HAVE_XMLSCHEMASSETPARSERSTRUCTUREDERRORS 1" >>confdefs.h +printf "%s\n" "#define HAVE_XMLSCHEMASSETPARSERSTRUCTUREDERRORS 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlSchemaSetValidStructuredErrors in -lxml2" >&5
-$as_echo_n "checking for xmlSchemaSetValidStructuredErrors in -lxml2... " >&6; } -if ${ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for xmlSchemaSetValidStructuredErrors in -lxml2" >&5
+printf %s "checking for xmlSchemaSetValidStructuredErrors in -lxml2... " >&6; } +if test ${ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lxml2 $XML2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13126,40 +15298,40 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char xmlSchemaSetValidStructuredErrors (); int -main () +main (void) { return xmlSchemaSetValidStructuredErrors (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors=yes -else +else $as_nop ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors" >&5 -$as_echo "$ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors" >&6; } -if test "x$ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors" >&5 +printf "%s\n" "$ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors" >&6; } +if test "x$ac_cv_lib_xml2_xmlSchemaSetValidStructuredErrors" = xyes +then :
-$as_echo "#define HAVE_XMLSCHEMASSETVALIDSTRUCTUREDERRORS 1" >>confdefs.h +printf "%s\n" "#define HAVE_XMLSCHEMASSETVALIDSTRUCTUREDERRORS 1" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlFirstElementChild in -lxml2" >&5
-$as_echo_n "checking for xmlFirstElementChild in -lxml2... " >&6; } -if ${ac_cv_lib_xml2_xmlFirstElementChild+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for xmlFirstElementChild in -lxml2" >&5
+printf %s "checking for xmlFirstElementChild in -lxml2... " >&6; } +if test ${ac_cv_lib_xml2_xmlFirstElementChild+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lxml2 $XML2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13168,40 +15340,40 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char xmlFirstElementChild (); int -main () +main (void) { return xmlFirstElementChild (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_xml2_xmlFirstElementChild=yes -else +else $as_nop ac_cv_lib_xml2_xmlFirstElementChild=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlFirstElementChild" >&5 -$as_echo "$ac_cv_lib_xml2_xmlFirstElementChild" >&6; } -if test "x$ac_cv_lib_xml2_xmlFirstElementChild" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlFirstElementChild" >&5 +printf "%s\n" "$ac_cv_lib_xml2_xmlFirstElementChild" >&6; } +if test "x$ac_cv_lib_xml2_xmlFirstElementChild" = xyes +then :
-$as_echo "#define HAVE_XMLFIRSTELEMENTCHILD 1" >>confdefs.h +printf "%s\n" "#define HAVE_XMLFIRSTELEMENTCHILD 1" >>confdefs.h
fi
ac_fn_c_check_type "$LINENO" "xmlDocProperties" "ac_cv_type_xmlDocProperties" "#include <libxml/tree.h>
" -if test "x$ac_cv_type_xmlDocProperties" = xyes; then : +if test "x$ac_cv_type_xmlDocProperties" = xyes +then :
-$as_echo "#define HAVE_XMLDOC_PROPERTIES 1" >>confdefs.h +printf "%s\n" "#define HAVE_XMLDOC_PROPERTIES 1" >>confdefs.h
fi
@@ -13212,7 +15384,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "$ac_cv_lib_xml2_xmlParseMemory" != "yes"; then : +if test "$ac_cv_lib_xml2_xmlParseMemory" != "yes" +then : case "x$with_xml" in x) as_fn_append wine_warnings "|libxml2 ${notice_platform}development files not found (or too old), XML won't be supported." ;; xno) ;; @@ -13224,46 +15397,54 @@ fi
if test "x$with_xslt" != "xno" then
- if ${XSLT_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${XSLT_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : XSLT_CFLAGS=`$PKG_CONFIG --cflags libxslt 2>/dev/null` fi fi test "$cross_compiling" = yes || XSLT_CFLAGS=${XSLT_CFLAGS:-`${XSLT_CONFIG:-xslt-config} --cflags 2>/dev/null`} -if ${XSLT_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${XSLT_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : XSLT_LIBS=`$PKG_CONFIG --libs libxslt 2>/dev/null` fi fi test "$cross_compiling" = yes || XSLT_LIBS=${XSLT_LIBS:-`${XSLT_CONFIG:-xslt-config} --libs 2>/dev/null`} XSLT_LIBS=${XSLT_LIBS:-"-lxml2"} -$as_echo "$as_me:${as_lineno-$LINENO}: libxslt cflags: $XSLT_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libxslt libs: $XSLT_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libxslt cflags: $XSLT_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libxslt libs: $XSLT_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $XSLT_CFLAGS" -for ac_header in libxslt/pattern.h libxslt/transform.h -do :
- as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#ifdef HAVE_LIBXSLT_PATTERN_H +ac_fn_c_check_header_compile "$LINENO" "libxslt/pattern.h" "ac_cv_header_libxslt_pattern_h" "#ifdef HAVE_LIBXSLT_PATTERN_H # include <libxslt/pattern.h> #endif " -if eval test "x$"$as_ac_Header"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +if test "x$ac_cv_header_libxslt_pattern_h" = xyes +then :
- printf "%s\n" "#define HAVE_LIBXSLT_PATTERN_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "libxslt/transform.h" "ac_cv_header_libxslt_transform_h" "#ifdef HAVE_LIBXSLT_PATTERN_H +# include <libxslt/pattern.h> +#endif +" +if test "x$ac_cv_header_libxslt_transform_h" = xyes +then :
- printf "%s\n" "#define HAVE_LIBXSLT_TRANSFORM_H 1" >>confdefs.h
-done +fi
if test "$ac_cv_header_libxslt_transform_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lxslt" >&5
-$as_echo_n "checking for -lxslt... " >&6; } -if ${ac_cv_lib_soname_xslt+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lxslt" >&5
+printf %s "checking for -lxslt... " >&6; } +if test ${ac_cv_lib_soname_xslt+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lxslt $XSLT_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13272,45 +15453,43 @@ LIBS="-lxslt $XSLT_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char xsltCompilePattern (); int -main () +main (void) { return xsltCompilePattern (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_xslt=`$ac_cv_path_LDD conftest.exe | grep "xslt" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_xslt=`$OTOOL -L conftest$ac_exeext | grep "libxslt\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libxslt.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_xslt=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libxslt\.$LIBEXT" | sed -e "s/^.*\[\(libxslt\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_xslt:+false} :; then :
if ${ac_cv_lib_soname_xslt:+false} :
+then : ac_cv_lib_soname_xslt=`$LDD conftest$ac_exeext | grep "libxslt\.$LIBEXT" | sed -e "s/^.*(libxslt.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_xslt= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_xslt:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_xslt:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_xslt" >&5
-$as_echo "$ac_cv_lib_soname_xslt" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_xslt" >&5
+printf "%s\n" "$ac_cv_lib_soname_xslt" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBXSLT "$ac_cv_lib_soname_xslt" -_ACEOF +printf "%s\n" "#define SONAME_LIBXSLT "$ac_cv_lib_soname_xslt"" >>confdefs.h
fi @@ -13320,7 +15499,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_xslt" = "x"; then : +if test "x$ac_cv_lib_soname_xslt" = "x" +then : case "x$with_xslt" in x) as_fn_append wine_warnings "|libxslt ${notice_platform}development files not found, xslt won't be supported." ;; xno) ;; @@ -13332,40 +15512,40 @@ fi
if test "x$with_inotify" != "xno" then
- if ${INOTIFY_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${INOTIFY_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : INOTIFY_CFLAGS=`$PKG_CONFIG --cflags libinotify 2>/dev/null` fi fi
-if ${INOTIFY_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${INOTIFY_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : INOTIFY_LIBS=`$PKG_CONFIG --libs libinotify 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: libinotify cflags: $INOTIFY_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libinotify libs: $INOTIFY_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libinotify cflags: $INOTIFY_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libinotify libs: $INOTIFY_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $INOTIFY_CFLAGS" -for ac_header in sys/inotify.h -do :
- ac_fn_c_check_header_mongrel "$LINENO" "sys/inotify.h" "ac_cv_header_sys_inotify_h" "$ac_includes_default"
-if test "x$ac_cv_header_sys_inotify_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_SYS_INOTIFY_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "sys/inotify.h" "ac_cv_header_sys_inotify_h" "$ac_includes_default" +if test "x$ac_cv_header_sys_inotify_h" = xyes +then :
- printf "%s\n" "#define HAVE_SYS_INOTIFY_H 1" >>confdefs.h
fi
-done
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for inotify_add_watch in -linotify" >&5
-$as_echo_n "checking for inotify_add_watch in -linotify... " >&6; } -if ${ac_cv_lib_inotify_inotify_add_watch+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for inotify_add_watch in -linotify" >&5
+printf %s "checking for inotify_add_watch in -linotify... " >&6; } +if test ${ac_cv_lib_inotify_inotify_add_watch+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-linotify $INOTIFY_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13374,39 +15554,39 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char inotify_add_watch (); int -main () +main (void) { return inotify_add_watch (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_inotify_inotify_add_watch=yes -else +else $as_nop ac_cv_lib_inotify_inotify_add_watch=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_inotify_inotify_add_watch" >&5 -$as_echo "$ac_cv_lib_inotify_inotify_add_watch" >&6; } -if test "x$ac_cv_lib_inotify_inotify_add_watch" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_inotify_inotify_add_watch" >&5 +printf "%s\n" "$ac_cv_lib_inotify_inotify_add_watch" >&6; } +if test "x$ac_cv_lib_inotify_inotify_add_watch" = xyes +then : : -else +else $as_nop INOTIFY_LIBS="" fi
CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "$ac_cv_header_sys_inotify_h" != "yes"; then : +if test "$ac_cv_header_sys_inotify_h" != "yes" +then : case "x$with_inotify" in x) as_fn_append wine_notices "|libinotify ${notice_platform}development files not found (or too old), filesystem change notifications won't be supported." ;; xno) ;; @@ -13418,30 +15598,36 @@ fi
if test "x$with_dbus" != "xno" then
- if ${DBUS_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${DBUS_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : DBUS_CFLAGS=`$PKG_CONFIG --cflags dbus-1 2>/dev/null` fi fi
-if ${DBUS_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${DBUS_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : DBUS_LIBS=`$PKG_CONFIG --libs dbus-1 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: dbus-1 cflags: $DBUS_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: dbus-1 libs: $DBUS_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: dbus-1 cflags: $DBUS_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: dbus-1 libs: $DBUS_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $DBUS_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "dbus/dbus.h" "ac_cv_header_dbus_dbus_h" "$ac_includes_default" -if test "x$ac_cv_header_dbus_dbus_h" = xyes; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -ldbus-1" >&5
-$as_echo_n "checking for -ldbus-1... " >&6; } -if ${ac_cv_lib_soname_dbus_1+:} false; then :
- $as_echo_n "(cached) " >&6
-else +ac_fn_c_check_header_compile "$LINENO" "dbus/dbus.h" "ac_cv_header_dbus_dbus_h" "$ac_includes_default" +if test "x$ac_cv_header_dbus_dbus_h" = xyes +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -ldbus-1" >&5
+printf %s "checking for -ldbus-1... " >&6; } +if test ${ac_cv_lib_soname_dbus_1+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-ldbus-1 $DBUS_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13450,58 +15636,56 @@ LIBS="-ldbus-1 $DBUS_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char dbus_connection_close (); int -main () +main (void) { return dbus_connection_close (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_dbus_1=`$ac_cv_path_LDD conftest.exe | grep "dbus-1" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_dbus_1=`$OTOOL -L conftest$ac_exeext | grep "libdbus-1\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libdbus-1.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_dbus_1=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libdbus-1\.$LIBEXT" | sed -e "s/^.*\[\(libdbus-1\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_dbus_1:+false} :; then :
if ${ac_cv_lib_soname_dbus_1:+false} :
+then : ac_cv_lib_soname_dbus_1=`$LDD conftest$ac_exeext | grep "libdbus-1\.$LIBEXT" | sed -e "s/^.*(libdbus-1.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_dbus_1= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_dbus_1:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_dbus_1:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; } DBUS_CFLAGS="" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_dbus_1" >&5
-$as_echo "$ac_cv_lib_soname_dbus_1" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_dbus_1" >&5
+printf "%s\n" "$ac_cv_lib_soname_dbus_1" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBDBUS_1 "$ac_cv_lib_soname_dbus_1" -_ACEOF +printf "%s\n" "#define SONAME_LIBDBUS_1 "$ac_cv_lib_soname_dbus_1"" >>confdefs.h
fi -else +else $as_nop DBUS_CFLAGS="" fi
CPPFLAGS=$ac_save_CPPFLAGS
fi if test "x$ac_cv_lib_soname_dbus_1" = "x" -a \
"x$ac_cv_header_DiskArbitration_DiskArbitration_h" != "xyes"; then :
"x$ac_cv_header_DiskArbitration_DiskArbitration_h" != "xyes"
+then : case "x$with_dbus" in x) as_fn_append wine_notices "|libdbus ${notice_platform}development files not found, no dynamic device support." ;; xno) ;; @@ -13513,30 +15697,36 @@ fi
if test "x$with_hal" != "xno" -a "x$ac_cv_lib_soname_dbus_1" != x then
- if ${HAL_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${HAL_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : HAL_CFLAGS=`$PKG_CONFIG --cflags hal 2>/dev/null` fi fi
-if ${HAL_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${HAL_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : HAL_LIBS=`$PKG_CONFIG --libs hal 2>/dev/null` fi fi
HAL_LIBS=${HAL_LIBS:-"-ldbus-1"} -$as_echo "$as_me:${as_lineno-$LINENO}: hal cflags: $HAL_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: hal libs: $HAL_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: hal cflags: $HAL_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: hal libs: $HAL_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $HAL_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "hal/libhal.h" "ac_cv_header_hal_libhal_h" "$ac_includes_default" -if test "x$ac_cv_header_hal_libhal_h" = xyes; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lhal" >&5
-$as_echo_n "checking for -lhal... " >&6; } -if ${ac_cv_lib_soname_hal+:} false; then :
- $as_echo_n "(cached) " >&6
-else +ac_fn_c_check_header_compile "$LINENO" "hal/libhal.h" "ac_cv_header_hal_libhal_h" "$ac_includes_default" +if test "x$ac_cv_header_hal_libhal_h" = xyes +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lhal" >&5
+printf %s "checking for -lhal... " >&6; } +if test ${ac_cv_lib_soname_hal+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lhal $HAL_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13545,57 +15735,55 @@ LIBS="-lhal $HAL_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char libhal_ctx_new (); int -main () +main (void) { return libhal_ctx_new (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_hal=`$ac_cv_path_LDD conftest.exe | grep "hal" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_hal=`$OTOOL -L conftest$ac_exeext | grep "libhal\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libhal.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_hal=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libhal\.$LIBEXT" | sed -e "s/^.*\[\(libhal\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_hal:+false} :; then :
if ${ac_cv_lib_soname_hal:+false} :
+then : ac_cv_lib_soname_hal=`$LDD conftest$ac_exeext | grep "libhal\.$LIBEXT" | sed -e "s/^.*(libhal.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_hal= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_hal:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_hal:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; } HAL_CFLAGS="" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_hal" >&5
-$as_echo "$ac_cv_lib_soname_hal" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_hal" >&5
+printf "%s\n" "$ac_cv_lib_soname_hal" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBHAL "$ac_cv_lib_soname_hal" -_ACEOF +printf "%s\n" "#define SONAME_LIBHAL "$ac_cv_lib_soname_hal"" >>confdefs.h
fi -else +else $as_nop HAL_CFLAGS="" fi
CPPFLAGS=$ac_save_CPPFLAGS
if test "x$ac_cv_lib_soname_hal" = "x" -a \
"x$ac_cv_header_DiskArbitration_DiskArbitration_h" != "xyes"; then :
"x$ac_cv_header_DiskArbitration_DiskArbitration_h" != "xyes"
+then : case "x$with_hal" in x) as_fn_append wine_notices "|libhal ${notice_platform}development files not found, no legacy dynamic device support." ;; xno) ;; @@ -13608,43 +15796,50 @@ fi
if test "x$with_gnutls" != "xno" then
- if ${GNUTLS_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${GNUTLS_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : GNUTLS_CFLAGS=`$PKG_CONFIG --cflags gnutls 2>/dev/null` fi fi
-if ${GNUTLS_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${GNUTLS_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : GNUTLS_LIBS=`$PKG_CONFIG --libs gnutls 2>/dev/null` fi fi
GNUTLS_LIBS=${GNUTLS_LIBS:-"-lgnutls"} -$as_echo "$as_me:${as_lineno-$LINENO}: gnutls cflags: $GNUTLS_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: gnutls libs: $GNUTLS_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: gnutls cflags: $GNUTLS_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: gnutls libs: $GNUTLS_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $GNUTLS_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "gnutls/gnutls.h" "ac_cv_header_gnutls_gnutls_h" "$ac_includes_default" -if test "x$ac_cv_header_gnutls_gnutls_h" = xyes; then : +ac_fn_c_check_header_compile "$LINENO" "gnutls/gnutls.h" "ac_cv_header_gnutls_gnutls_h" "$ac_includes_default" +if test "x$ac_cv_header_gnutls_gnutls_h" = xyes +then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <gnutls/gnutls.h> #include <gnutls/crypto.h> int -main () +main (void) { static typeof(gnutls_mac_get_key_size) *func; if (func) return 0; ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lgnutls" >&5
-$as_echo_n "checking for -lgnutls... " >&6; } -if ${ac_cv_lib_soname_gnutls+:} false; then :
- $as_echo_n "(cached) " >&6
-else +if ac_fn_c_try_compile "$LINENO" +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lgnutls" >&5
+printf %s "checking for -lgnutls... " >&6; } +if test ${ac_cv_lib_soname_gnutls+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lgnutls $GNUTLS_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13653,75 +15848,73 @@ LIBS="-lgnutls $GNUTLS_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gnutls_global_init (); int -main () +main (void) { return gnutls_global_init (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_gnutls=`$ac_cv_path_LDD conftest.exe | grep "gnutls" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_gnutls=`$OTOOL -L conftest$ac_exeext | grep "libgnutls\(-deb0\)\{0,1\}\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libgnutls\(-deb0\)\{0,1\}.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_gnutls=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libgnutls\(-deb0\)\{0,1\}\.$LIBEXT" | sed -e "s/^.*\[\(libgnutls\(-deb0\)\{0,1\}\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_gnutls:+false} :; then :
if ${ac_cv_lib_soname_gnutls:+false} :
+then : ac_cv_lib_soname_gnutls=`$LDD conftest$ac_exeext | grep "libgnutls\(-deb0\)\{0,1\}\.$LIBEXT" | sed -e "s/^.*(libgnutls\(-deb0\)\{0,1\}.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_gnutls= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_gnutls:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_gnutls:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; } GNUTLS_CFLAGS="" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_gnutls" >&5
-$as_echo "$ac_cv_lib_soname_gnutls" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_gnutls" >&5
+printf "%s\n" "$ac_cv_lib_soname_gnutls" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBGNUTLS "$ac_cv_lib_soname_gnutls" -_ACEOF +printf "%s\n" "#define SONAME_LIBGNUTLS "$ac_cv_lib_soname_gnutls"" >>confdefs.h
fi ac_wine_check_funcs_save_LIBS="$LIBS" LIBS="$LIBS $GNUTLS_LIBS" -for ac_func in gnutls_cipher_init
- for ac_func in gnutls_cipher_init
do : ac_fn_c_check_func "$LINENO" "gnutls_cipher_init" "ac_cv_func_gnutls_cipher_init" -if test "x$ac_cv_func_gnutls_cipher_init" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_GNUTLS_CIPHER_INIT 1 -_ACEOF +if test "x$ac_cv_func_gnutls_cipher_init" = xyes +then :
- printf "%s\n" "#define HAVE_GNUTLS_CIPHER_INIT 1" >>confdefs.h
-else +else $as_nop as_fn_append wine_notices "|libgnutls ${notice_platform}development files too old, bcrypt encryption won't be supported." fi -done
+done LIBS="$ac_wine_check_funcs_save_LIBS" fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -else +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext +else $as_nop GNUTLS_CFLAGS="" fi
CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_gnutls" = "x"; then : +if test "x$ac_cv_lib_soname_gnutls" = "x" +then : case "x$with_gnutls" in x) as_fn_append wine_warnings "|libgnutls ${notice_platform}development files not found, no schannel support." ;; xno) ;; @@ -13733,30 +15926,36 @@ fi
if test "x$with_sane" != "xno" then
- if ${SANE_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${SANE_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : SANE_CFLAGS=`$PKG_CONFIG --cflags sane-backends 2>/dev/null` fi fi test "$cross_compiling" = yes || SANE_CFLAGS=${SANE_CFLAGS:-`${SANE_CONFIG:-sane-config} --cflags 2>/dev/null`} -if ${SANE_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${SANE_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : SANE_LIBS=`$PKG_CONFIG --libs sane-backends 2>/dev/null` fi fi test "$cross_compiling" = yes || SANE_LIBS=${SANE_LIBS:-`${SANE_CONFIG:-sane-config} --ldflags 2>/dev/null`}
-$as_echo "$as_me:${as_lineno-$LINENO}: sane-backends cflags: $SANE_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: sane-backends libs: $SANE_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: sane-backends cflags: $SANE_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: sane-backends libs: $SANE_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $SANE_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "sane/sane.h" "ac_cv_header_sane_sane_h" "$ac_includes_default" -if test "x$ac_cv_header_sane_sane_h" = xyes; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lsane" >&5
-$as_echo_n "checking for -lsane... " >&6; } -if ${ac_cv_lib_soname_sane+:} false; then :
- $as_echo_n "(cached) " >&6
-else +ac_fn_c_check_header_compile "$LINENO" "sane/sane.h" "ac_cv_header_sane_sane_h" "$ac_includes_default" +if test "x$ac_cv_header_sane_sane_h" = xyes +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lsane" >&5
+printf %s "checking for -lsane... " >&6; } +if test ${ac_cv_lib_soname_sane+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lsane $SANE_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13765,57 +15964,55 @@ LIBS="-lsane $SANE_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char sane_init (); int -main () +main (void) { return sane_init (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_sane=`$ac_cv_path_LDD conftest.exe | grep "sane" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_sane=`$OTOOL -L conftest$ac_exeext | grep "libsane\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libsane.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_sane=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libsane\.$LIBEXT" | sed -e "s/^.*\[\(libsane\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_sane:+false} :; then :
if ${ac_cv_lib_soname_sane:+false} :
+then : ac_cv_lib_soname_sane=`$LDD conftest$ac_exeext | grep "libsane\.$LIBEXT" | sed -e "s/^.*(libsane.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_sane= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_sane:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_sane:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; } SANE_CFLAGS="" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_sane" >&5
-$as_echo "$ac_cv_lib_soname_sane" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_sane" >&5
+printf "%s\n" "$ac_cv_lib_soname_sane" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBSANE "$ac_cv_lib_soname_sane" -_ACEOF +printf "%s\n" "#define SONAME_LIBSANE "$ac_cv_lib_soname_sane"" >>confdefs.h
fi -else +else $as_nop SANE_CFLAGS="" fi
CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_sane" = "x"; then : +if test "x$ac_cv_lib_soname_sane" = "x" +then : case "x$with_sane" in x) as_fn_append wine_notices "|libsane ${notice_platform}development files not found, scanners won't be supported." ;; xno) ;; @@ -13827,30 +16024,36 @@ fi
if test "x$with_usb" != "xno" then
- if ${USB_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${USB_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : USB_CFLAGS=`$PKG_CONFIG --cflags libusb-1.0 2>/dev/null` fi fi
-if ${USB_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${USB_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : USB_LIBS=`$PKG_CONFIG --libs libusb-1.0 2>/dev/null` fi fi
USB_LIBS=${USB_LIBS:-"-lusb-1.0"} -$as_echo "$as_me:${as_lineno-$LINENO}: libusb-1.0 cflags: $USB_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libusb-1.0 libs: $USB_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libusb-1.0 cflags: $USB_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libusb-1.0 libs: $USB_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $USB_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "libusb.h" "ac_cv_header_libusb_h" "$ac_includes_default" -if test "x$ac_cv_header_libusb_h" = xyes; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libusb_interrupt_event_handler in -lusb-1.0" >&5
-$as_echo_n "checking for libusb_interrupt_event_handler in -lusb-1.0... " >&6; } -if ${ac_cv_lib_usb_1_0_libusb_interrupt_event_handler+:} false; then :
- $as_echo_n "(cached) " >&6
-else +ac_fn_c_check_header_compile "$LINENO" "libusb.h" "ac_cv_header_libusb_h" "$ac_includes_default" +if test "x$ac_cv_header_libusb_h" = xyes +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for libusb_interrupt_event_handler in -lusb-1.0" >&5
+printf %s "checking for libusb_interrupt_event_handler in -lusb-1.0... " >&6; } +if test ${ac_cv_lib_usb_1_0_libusb_interrupt_event_handler+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lusb-1.0 $USB_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13859,44 +16062,43 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char libusb_interrupt_event_handler (); int -main () +main (void) { return libusb_interrupt_event_handler (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_usb_1_0_libusb_interrupt_event_handler=yes -else +else $as_nop ac_cv_lib_usb_1_0_libusb_interrupt_event_handler=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" >&5 -$as_echo "$ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" >&6; } -if test "x$ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" >&5 +printf "%s\n" "$ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" >&6; } +if test "x$ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" = xyes +then : : -else +else $as_nop USB_LIBS="" fi
-else +else $as_nop USB_LIBS="" fi
CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "$ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" != "yes"; then : +if test "$ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" != "yes" +then : case "x$with_usb" in x) as_fn_append wine_notices "|libusb-1.0 ${notice_platform}development files not found (or too old), USB devices won't be supported." ;; xno) ;; @@ -13908,11 +16110,12 @@ fi
if test "x$with_v4l2" != "xno" then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lv4l2" >&5
-$as_echo_n "checking for -lv4l2... " >&6; } -if ${ac_cv_lib_soname_v4l2+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lv4l2" >&5
+printf %s "checking for -lv4l2... " >&6; } +if test ${ac_cv_lib_soname_v4l2+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lv4l2 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -13921,50 +16124,49 @@ LIBS="-lv4l2 $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char v4l2_open (); int -main () +main (void) { return v4l2_open (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_v4l2=`$ac_cv_path_LDD conftest.exe | grep "v4l2" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_v4l2=`$OTOOL -L conftest$ac_exeext | grep "libv4l2\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libv4l2.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_v4l2=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libv4l2\.$LIBEXT" | sed -e "s/^.*\[\(libv4l2\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_v4l2:+false} :; then :
if ${ac_cv_lib_soname_v4l2:+false} :
+then : ac_cv_lib_soname_v4l2=`$LDD conftest$ac_exeext | grep "libv4l2\.$LIBEXT" | sed -e "s/^.*(libv4l2.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_v4l2= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_v4l2:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_v4l2:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_v4l2" >&5
-$as_echo "$ac_cv_lib_soname_v4l2" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_v4l2" >&5
+printf "%s\n" "$ac_cv_lib_soname_v4l2" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBV4L2 "$ac_cv_lib_soname_v4l2" -_ACEOF +printf "%s\n" "#define SONAME_LIBV4L2 "$ac_cv_lib_soname_v4l2"" >>confdefs.h
fi fi -if test "x$ac_cv_lib_soname_v4l2" = "x"; then : +if test "x$ac_cv_lib_soname_v4l2" = "x" +then : case "x$with_v4l2" in x) as_fn_append wine_notices "|libv4l2 ${notice_platform}development files not found." ;; xno) ;; @@ -13976,30 +16178,36 @@ fi
if test "x$with_gphoto" != "xno" then
- if ${GPHOTO2_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${GPHOTO2_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : GPHOTO2_CFLAGS=`$PKG_CONFIG --cflags libgphoto2 2>/dev/null` fi fi test "$cross_compiling" = yes || GPHOTO2_CFLAGS=${GPHOTO2_CFLAGS:-`${GPHOTO2_CONFIG:-gphoto2-config} --cflags 2>/dev/null`} -if ${GPHOTO2_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${GPHOTO2_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : GPHOTO2_LIBS=`$PKG_CONFIG --libs libgphoto2 2>/dev/null` fi fi test "$cross_compiling" = yes || GPHOTO2_LIBS=${GPHOTO2_LIBS:-`${GPHOTO2_CONFIG:-gphoto2-config} --libs 2>/dev/null`} GPHOTO2_LIBS=${GPHOTO2_LIBS:-"-lgphoto2"} -$as_echo "$as_me:${as_lineno-$LINENO}: libgphoto2 cflags: $GPHOTO2_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libgphoto2 libs: $GPHOTO2_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libgphoto2 cflags: $GPHOTO2_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libgphoto2 libs: $GPHOTO2_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $GPHOTO2_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "gphoto2-camera.h" "ac_cv_header_gphoto2_camera_h" "$ac_includes_default" -if test "x$ac_cv_header_gphoto2_camera_h" = xyes; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gp_camera_new in -lgphoto2" >&5
-$as_echo_n "checking for gp_camera_new in -lgphoto2... " >&6; } -if ${ac_cv_lib_gphoto2_gp_camera_new+:} false; then :
- $as_echo_n "(cached) " >&6
-else +ac_fn_c_check_header_compile "$LINENO" "gphoto2-camera.h" "ac_cv_header_gphoto2_camera_h" "$ac_includes_default" +if test "x$ac_cv_header_gphoto2_camera_h" = xyes +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gp_camera_new in -lgphoto2" >&5
+printf %s "checking for gp_camera_new in -lgphoto2... " >&6; } +if test ${ac_cv_lib_gphoto2_gp_camera_new+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lgphoto2 $GPHOTO2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14008,68 +16216,72 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gp_camera_new (); int -main () +main (void) { return gp_camera_new (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_gphoto2_gp_camera_new=yes -else +else $as_nop ac_cv_lib_gphoto2_gp_camera_new=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gphoto2_gp_camera_new" >&5 -$as_echo "$ac_cv_lib_gphoto2_gp_camera_new" >&6; } -if test "x$ac_cv_lib_gphoto2_gp_camera_new" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gphoto2_gp_camera_new" >&5 +printf "%s\n" "$ac_cv_lib_gphoto2_gp_camera_new" >&6; } +if test "x$ac_cv_lib_gphoto2_gp_camera_new" = xyes +then :
-$as_echo "#define HAVE_GPHOTO2 1" >>confdefs.h +printf "%s\n" "#define HAVE_GPHOTO2 1" >>confdefs.h
-else +else $as_nop GPHOTO2_LIBS=""; GPHOTO2_CFLAGS="" fi
-else +else $as_nop GPHOTO2_LIBS=""; GPHOTO2_CFLAGS="" fi
CPPFLAGS=$ac_save_CPPFLAGS
- if ${GPHOTO2_PORT_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${GPHOTO2_PORT_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : GPHOTO2_PORT_CFLAGS=`$PKG_CONFIG --cflags libgphoto2_port 2>/dev/null` fi fi test "$cross_compiling" = yes || GPHOTO2_PORT_CFLAGS=${GPHOTO2_PORT_CFLAGS:-`${GPHOTO2_PORT_CONFIG:-gphoto2-port-config} --cflags 2>/dev/null`} -if ${GPHOTO2_PORT_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${GPHOTO2_PORT_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : GPHOTO2_PORT_LIBS=`$PKG_CONFIG --libs libgphoto2_port 2>/dev/null` fi fi test "$cross_compiling" = yes || GPHOTO2_PORT_LIBS=${GPHOTO2_PORT_LIBS:-`${GPHOTO2_PORT_CONFIG:-gphoto2-port-config} --libs 2>/dev/null`} GPHOTO2_PORT_LIBS=${GPHOTO2_PORT_LIBS:-"-lgphoto2_port"} -$as_echo "$as_me:${as_lineno-$LINENO}: libgphoto2_port cflags: $GPHOTO2_PORT_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libgphoto2_port libs: $GPHOTO2_PORT_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libgphoto2_port cflags: $GPHOTO2_PORT_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libgphoto2_port libs: $GPHOTO2_PORT_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $GPHOTO2_PORT_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "gphoto2-port.h" "ac_cv_header_gphoto2_port_h" "$ac_includes_default" -if test "x$ac_cv_header_gphoto2_port_h" = xyes; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gp_port_info_list_new in -lgphoto2_port" >&5
-$as_echo_n "checking for gp_port_info_list_new in -lgphoto2_port... " >&6; } -if ${ac_cv_lib_gphoto2_port_gp_port_info_list_new+:} false; then :
- $as_echo_n "(cached) " >&6
-else +ac_fn_c_check_header_compile "$LINENO" "gphoto2-port.h" "ac_cv_header_gphoto2_port_h" "$ac_includes_default" +if test "x$ac_cv_header_gphoto2_port_h" = xyes +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gp_port_info_list_new in -lgphoto2_port" >&5
+printf %s "checking for gp_port_info_list_new in -lgphoto2_port... " >&6; } +if test ${ac_cv_lib_gphoto2_port_gp_port_info_list_new+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lgphoto2_port $GPHOTO2_PORT_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14078,46 +16290,45 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gp_port_info_list_new (); int -main () +main (void) { return gp_port_info_list_new (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_gphoto2_port_gp_port_info_list_new=yes -else +else $as_nop ac_cv_lib_gphoto2_port_gp_port_info_list_new=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gphoto2_port_gp_port_info_list_new" >&5 -$as_echo "$ac_cv_lib_gphoto2_port_gp_port_info_list_new" >&6; } -if test "x$ac_cv_lib_gphoto2_port_gp_port_info_list_new" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gphoto2_port_gp_port_info_list_new" >&5 +printf "%s\n" "$ac_cv_lib_gphoto2_port_gp_port_info_list_new" >&6; } +if test "x$ac_cv_lib_gphoto2_port_gp_port_info_list_new" = xyes +then :
-$as_echo "#define HAVE_GPHOTO2_PORT 1" >>confdefs.h +printf "%s\n" "#define HAVE_GPHOTO2_PORT 1" >>confdefs.h
-else +else $as_nop GPHOTO2_PORT_LIBS=""; GPHOTO2_PORT_CFLAGS="" fi
-else +else $as_nop GPHOTO2_PORT_LIBS=""; GPHOTO2_PORT_CFLAGS="" fi
CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "$ac_cv_lib_gphoto2_gp_camera_new" != "yes"; then : +if test "$ac_cv_lib_gphoto2_gp_camera_new" != "yes" +then : case "x$with_gphoto" in x) as_fn_append wine_notices "|libgphoto2 ${notice_platform}development files not found, digital cameras won't be supported." ;; xno) ;; @@ -14126,7 +16337,8 @@ This is an error since --with-gphoto was requested." "$LINENO" 5 ;; esac
fi -if test "$ac_cv_lib_gphoto2_port_gp_port_info_list_new" != "yes"; then : +if test "$ac_cv_lib_gphoto2_port_gp_port_info_list_new" != "yes" +then : case "x$with_gphoto" in x) as_fn_append wine_notices "|libgphoto2_port ${notice_platform}development files not found, digital cameras won't be auto-detected." ;; xno) ;; @@ -14139,11 +16351,12 @@ fi
if test "$ac_cv_header_resolv_h" = "yes" then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for resolver library" >&5
-$as_echo_n "checking for resolver library... " >&6; } -if ${ac_cv_have_resolv+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for resolver library" >&5
+printf %s "checking for resolver library... " >&6; } +if test ${ac_cv_have_resolv+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_save_LIBS="$LIBS" for lib in '' -lresolv do @@ -14155,35 +16368,36 @@ else #endif #include <resolv.h> int -main () +main (void) { if (!(_res.options & RES_INIT)) res_init(); res_query("foo",ns_c_in,0,0,0); ns_initparse(0,0,0) ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_have_resolv=${lib:-"none required"} -else +else $as_nop ac_cv_have_resolv="not found" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext test "x$ac_cv_have_resolv" = "xnot found" || break done LIBS="$ac_save_LIBS" fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_resolv" >&5 -$as_echo "$ac_cv_have_resolv" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_resolv" >&5 +printf "%s\n" "$ac_cv_have_resolv" >&6; }
case "$ac_cv_have_resolv" in "not found") ;; "none required")
-$as_echo "#define HAVE_RESOLV 1" >>confdefs.h +printf "%s\n" "#define HAVE_RESOLV 1" >>confdefs.h ;; *)
$as_echo "#define HAVE_RESOLV 1" >>confdefs.h
printf "%s\n" "#define HAVE_RESOLV 1" >>confdefs.h RESOLV_LIBS=$ac_cv_have_resolv
;;
@@ -14191,39 +16405,41 @@ $as_echo "#define HAVE_RESOLV 1" >>confdefs.h
if test "x$ac_cv_have_resolv" != "xnot found" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for res_getservers" >&5
-$as_echo_n "checking for res_getservers... " >&6; } -if ${ac_cv_have_res_getservers+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for res_getservers" >&5
+printf %s "checking for res_getservers... " >&6; } +if test ${ac_cv_have_res_getservers+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_save_LIBS="$LIBS" LIBS="$RESOLV_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <resolv.h> int -main () +main (void) { res_getservers(NULL, NULL, 0); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_have_res_getservers=yes -else +else $as_nop ac_cv_have_res_getservers=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS="$ac_save_LIBS" fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_res_getservers" >&5 -$as_echo "$ac_cv_have_res_getservers" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_res_getservers" >&5 +printf "%s\n" "$ac_cv_have_res_getservers" >&6; } if test "$ac_cv_have_res_getservers" = "yes" then
-$as_echo "#define HAVE_RES_GETSERVERS 1" >>confdefs.h +printf "%s\n" "#define HAVE_RES_GETSERVERS 1" >>confdefs.h
fi fi
@@ -14231,42 +16447,42 @@ fi
if test "x$with_cms" != "xno" then
- if ${LCMS2_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${LCMS2_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : LCMS2_CFLAGS=`$PKG_CONFIG --cflags lcms2 2>/dev/null` fi fi
-if ${LCMS2_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${LCMS2_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : LCMS2_LIBS=`$PKG_CONFIG --libs lcms2 2>/dev/null` fi fi
LCMS2_LIBS=${LCMS2_LIBS:-"-llcms2"} -$as_echo "$as_me:${as_lineno-$LINENO}: lcms2 cflags: $LCMS2_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: lcms2 libs: $LCMS2_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: lcms2 cflags: $LCMS2_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: lcms2 libs: $LCMS2_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $LCMS2_CFLAGS" -for ac_header in lcms2.h -do :
- ac_fn_c_check_header_mongrel "$LINENO" "lcms2.h" "ac_cv_header_lcms2_h" "$ac_includes_default"
-if test "x$ac_cv_header_lcms2_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_LCMS2_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "lcms2.h" "ac_cv_header_lcms2_h" "$ac_includes_default" +if test "x$ac_cv_header_lcms2_h" = xyes +then :
- printf "%s\n" "#define HAVE_LCMS2_H 1" >>confdefs.h
fi
-done
if test "$ac_cv_header_lcms2_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for cmsOpenProfileFromFile in -llcms2" >&5
-$as_echo_n "checking for cmsOpenProfileFromFile in -llcms2... " >&6; } -if ${ac_cv_lib_lcms2_cmsOpenProfileFromFile+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for cmsOpenProfileFromFile in -llcms2" >&5
+printf %s "checking for cmsOpenProfileFromFile in -llcms2... " >&6; } +if test ${ac_cv_lib_lcms2_cmsOpenProfileFromFile+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-llcms2 $LCMS2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14275,34 +16491,33 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char cmsOpenProfileFromFile (); int -main () +main (void) { return cmsOpenProfileFromFile (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_lcms2_cmsOpenProfileFromFile=yes -else +else $as_nop ac_cv_lib_lcms2_cmsOpenProfileFromFile=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lcms2_cmsOpenProfileFromFile" >&5 -$as_echo "$ac_cv_lib_lcms2_cmsOpenProfileFromFile" >&6; } -if test "x$ac_cv_lib_lcms2_cmsOpenProfileFromFile" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lcms2_cmsOpenProfileFromFile" >&5 +printf "%s\n" "$ac_cv_lib_lcms2_cmsOpenProfileFromFile" >&6; } +if test "x$ac_cv_lib_lcms2_cmsOpenProfileFromFile" = xyes +then :
-$as_echo "#define HAVE_LCMS2 1" >>confdefs.h +printf "%s\n" "#define HAVE_LCMS2 1" >>confdefs.h
-else +else $as_nop LCMS2_LIBS="" fi
@@ -14313,7 +16528,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "$ac_cv_lib_lcms2_cmsOpenProfileFromFile" != "yes"; then : +if test "$ac_cv_lib_lcms2_cmsOpenProfileFromFile" != "yes" +then : case "x$with_cms" in x) as_fn_append wine_notices "|liblcms2 ${notice_platform}development files not found, Color Management won't be supported." ;; xno) ;; @@ -14325,42 +16541,42 @@ fi
if test "x$with_freetype" != "xno" then
- if ${FREETYPE_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${FREETYPE_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : FREETYPE_CFLAGS=`$PKG_CONFIG --cflags freetype2 2>/dev/null` fi fi test "$cross_compiling" = yes || FREETYPE_CFLAGS=${FREETYPE_CFLAGS:-`(${FREETYPE_CONFIG:-freetype-config} --cflags || ${FREETYPE2_CONFIG:-freetype2-config} --cflags) 2>/dev/null`} -if ${FREETYPE_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${FREETYPE_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : FREETYPE_LIBS=`$PKG_CONFIG --libs freetype2 2>/dev/null` fi fi test "$cross_compiling" = yes || FREETYPE_LIBS=${FREETYPE_LIBS:-`(${FREETYPE_CONFIG:-freetype-config} --libs || ${FREETYPE2_CONFIG:-freetype2-config} --libs) 2>/dev/null`} FREETYPE_LIBS=${FREETYPE_LIBS:-"-lfreetype"} -$as_echo "$as_me:${as_lineno-$LINENO}: freetype2 cflags: $FREETYPE_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: freetype2 libs: $FREETYPE_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: freetype2 cflags: $FREETYPE_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: freetype2 libs: $FREETYPE_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $FREETYPE_CFLAGS" -for ac_header in ft2build.h -do :
- ac_fn_c_check_header_mongrel "$LINENO" "ft2build.h" "ac_cv_header_ft2build_h" "$ac_includes_default"
-if test "x$ac_cv_header_ft2build_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_FT2BUILD_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "ft2build.h" "ac_cv_header_ft2build_h" "$ac_includes_default" +if test "x$ac_cv_header_ft2build_h" = xyes +then :
- printf "%s\n" "#define HAVE_FT2BUILD_H 1" >>confdefs.h
fi
-done
if test "$ac_cv_header_ft2build_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lfreetype" >&5
-$as_echo_n "checking for -lfreetype... " >&6; } -if ${ac_cv_lib_soname_freetype+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lfreetype" >&5
+printf %s "checking for -lfreetype... " >&6; } +if test ${ac_cv_lib_soname_freetype+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lfreetype $FREETYPE_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14369,57 +16585,54 @@ LIBS="-lfreetype $FREETYPE_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char FT_Init_FreeType (); int -main () +main (void) { return FT_Init_FreeType (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_freetype=`$ac_cv_path_LDD conftest.exe | grep "freetype" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_freetype=`$OTOOL -L conftest$ac_exeext | grep "libfreetype\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libfreetype.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_freetype=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libfreetype\.$LIBEXT" | sed -e "s/^.*\[\(libfreetype\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_freetype:+false} :; then :
if ${ac_cv_lib_soname_freetype:+false} :
+then : ac_cv_lib_soname_freetype=`$LDD conftest$ac_exeext | grep "libfreetype\.$LIBEXT" | sed -e "s/^.*(libfreetype.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_freetype= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_freetype:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_freetype:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; } FREETYPE_LIBS="" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_freetype" >&5
-$as_echo "$ac_cv_lib_soname_freetype" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_freetype" >&5
+printf "%s\n" "$ac_cv_lib_soname_freetype" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBFREETYPE "$ac_cv_lib_soname_freetype" -_ACEOF +printf "%s\n" "#define SONAME_LIBFREETYPE "$ac_cv_lib_soname_freetype"" >>confdefs.h
-$as_echo "#define HAVE_FREETYPE 1" >>confdefs.h +printf "%s\n" "#define HAVE_FREETYPE 1" >>confdefs.h
ac_fn_c_check_type "$LINENO" "FT_TrueTypeEngineType" "ac_cv_type_FT_TrueTypeEngineType" "#include <ft2build.h>
#include FT_MODULE_H " -if test "x$ac_cv_type_FT_TrueTypeEngineType" = xyes; then : +if test "x$ac_cv_type_FT_TrueTypeEngineType" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_FT_TRUETYPEENGINETYPE 1 -_ACEOF +printf "%s\n" "#define HAVE_FT_TRUETYPEENGINETYPE 1" >>confdefs.h
fi @@ -14432,7 +16645,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_freetype" = x; then : +if test "x$ac_cv_lib_soname_freetype" = x +then : case "x$with_freetype" in xno) ;; *) as_fn_error $? "FreeType ${notice_platform}development files not found. Fonts will not be built. @@ -14443,18 +16657,12 @@ fi
ac_wine_check_funcs_save_LIBS="$LIBS" LIBS="$LIBS $PTHREAD_LIBS" -for ac_func in \
pthread_getthreadid_np
-do :
- as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test "x$"$as_ac_var"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_func "$LINENO" "pthread_getthreadid_np" "ac_cv_func_pthread_getthreadid_np" +if test "x$ac_cv_func_pthread_getthreadid_np" = xyes +then :
- printf "%s\n" "#define HAVE_PTHREAD_GETTHREADID_NP 1" >>confdefs.h
fi -done
LIBS="$ac_wine_check_funcs_save_LIBS"
@@ -14462,11 +16670,12 @@ if test "x$enable_tools" != xno -a "x$with_gettextpo" = xyes then if test "$ac_cv_header_gettext_po_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for po_message_msgctxt in -lgettextpo" >&5
-$as_echo_n "checking for po_message_msgctxt in -lgettextpo... " >&6; } -if ${ac_cv_lib_gettextpo_po_message_msgctxt+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for po_message_msgctxt in -lgettextpo" >&5
+printf %s "checking for po_message_msgctxt in -lgettextpo... " >&6; } +if test ${ac_cv_lib_gettextpo_po_message_msgctxt+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lgettextpo $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14475,39 +16684,39 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char po_message_msgctxt (); int -main () +main (void) { return po_message_msgctxt (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_gettextpo_po_message_msgctxt=yes -else +else $as_nop ac_cv_lib_gettextpo_po_message_msgctxt=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gettextpo_po_message_msgctxt" >&5 -$as_echo "$ac_cv_lib_gettextpo_po_message_msgctxt" >&6; } -if test "x$ac_cv_lib_gettextpo_po_message_msgctxt" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gettextpo_po_message_msgctxt" >&5 +printf "%s\n" "$ac_cv_lib_gettextpo_po_message_msgctxt" >&6; } +if test "x$ac_cv_lib_gettextpo_po_message_msgctxt" = xyes +then :
-$as_echo "#define HAVE_LIBGETTEXTPO 1" >>confdefs.h +printf "%s\n" "#define HAVE_LIBGETTEXTPO 1" >>confdefs.h
GETTEXTPO_LIBS="-lgettextpo"
fi
fi
- if test "x$GETTEXTPO_LIBS" = "x"; then :
- if test "x$GETTEXTPO_LIBS" = "x"
+then : case "x$with_gettextpo" in x) as_fn_append wine_notices "|GetText ${notice_platform}development files not found (or too old), po files can't be rebuilt." ;; xno) ;; @@ -14516,7 +16725,8 @@ This is an error since --with-gettextpo was requested." "$LINENO" 5 ;; esac
fi
- if test "$srcdir" != .; then :
- if test "$srcdir" != .
+then : case "x$with_gettextpo" in x) as_fn_append wine_notices "|Rebuilding po files is not supported for out of tree builds." ;; xno) ;; @@ -14529,35 +16739,39 @@ fi
if test "x$with_pulse" != "xno"; then
- if ${PULSE_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${PULSE_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : PULSE_CFLAGS=`$PKG_CONFIG --cflags libpulse 2>/dev/null` fi fi
-if ${PULSE_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${PULSE_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : PULSE_LIBS=`$PKG_CONFIG --libs libpulse 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: libpulse cflags: $PULSE_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libpulse libs: $PULSE_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libpulse cflags: $PULSE_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libpulse libs: $PULSE_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $PULSE_CFLAGS" -for ac_header in pulse/pulseaudio.h
for ac_header in pulse/pulseaudio.h
do :
- ac_fn_c_check_header_mongrel "$LINENO" "pulse/pulseaudio.h" "ac_cv_header_pulse_pulseaudio_h" "$ac_includes_default"
-if test "x$ac_cv_header_pulse_pulseaudio_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_PULSE_PULSEAUDIO_H 1 -_ACEOF
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pa_stream_is_corked in -lpulse" >&5
-$as_echo_n "checking for pa_stream_is_corked in -lpulse... " >&6; } -if ${ac_cv_lib_pulse_pa_stream_is_corked+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- ac_fn_c_check_header_compile "$LINENO" "pulse/pulseaudio.h" "ac_cv_header_pulse_pulseaudio_h" "$ac_includes_default"
+if test "x$ac_cv_header_pulse_pulseaudio_h" = xyes +then :
- printf "%s\n" "#define HAVE_PULSE_PULSEAUDIO_H 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pa_stream_is_corked in -lpulse" >&5
+printf %s "checking for pa_stream_is_corked in -lpulse... " >&6; } +if test ${ac_cv_lib_pulse_pa_stream_is_corked+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lpulse $PULSE_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14566,45 +16780,44 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char pa_stream_is_corked (); int -main () +main (void) { return pa_stream_is_corked (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_pulse_pa_stream_is_corked=yes -else +else $as_nop ac_cv_lib_pulse_pa_stream_is_corked=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pulse_pa_stream_is_corked" >&5 -$as_echo "$ac_cv_lib_pulse_pa_stream_is_corked" >&6; } -if test "x$ac_cv_lib_pulse_pa_stream_is_corked" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pulse_pa_stream_is_corked" >&5 +printf "%s\n" "$ac_cv_lib_pulse_pa_stream_is_corked" >&6; } +if test "x$ac_cv_lib_pulse_pa_stream_is_corked" = xyes +then : : -else +else $as_nop PULSE_LIBS="" fi
-else +else $as_nop PULSE_LIBS="" fi
done
CPPFLAGS=$ac_save_CPPFLAGS
fi -if test -z "$PULSE_LIBS"; then : +if test -z "$PULSE_LIBS" +then : case "x$with_pulse" in x) as_fn_append wine_notices "|libpulse ${notice_platform}development files not found or too old, Pulse won't be supported." ;; xno) ;; @@ -14616,46 +16829,53 @@ fi
if test "x$with_gstreamer" != "xno" then
- if ${GSTREAMER_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${GSTREAMER_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : GSTREAMER_CFLAGS=`$PKG_CONFIG --cflags gstreamer-1.0 gstreamer-video-1.0 gstreamer-audio-1.0 2>/dev/null` fi fi
-if ${GSTREAMER_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${GSTREAMER_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : GSTREAMER_LIBS=`$PKG_CONFIG --libs gstreamer-1.0 gstreamer-video-1.0 gstreamer-audio-1.0 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: gstreamer-1.0 gstreamer-video-1.0 gstreamer-audio-1.0 cflags: $GSTREAMER_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: gstreamer-1.0 gstreamer-video-1.0 gstreamer-audio-1.0 libs: $GSTREAMER_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: gstreamer-1.0 gstreamer-video-1.0 gstreamer-audio-1.0 cflags: $GSTREAMER_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: gstreamer-1.0 gstreamer-video-1.0 gstreamer-audio-1.0 libs: $GSTREAMER_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $GSTREAMER_CFLAGS" -ac_fn_c_check_header_mongrel "$LINENO" "gst/gst.h" "ac_cv_header_gst_gst_h" "$ac_includes_default" -if test "x$ac_cv_header_gst_gst_h" = xyes; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether gint64 defined by gst/gst.h is indeed 64-bit" >&5
-$as_echo_n "checking whether gint64 defined by gst/gst.h is indeed 64-bit... " >&6; } +ac_fn_c_check_header_compile "$LINENO" "gst/gst.h" "ac_cv_header_gst_gst_h" "$ac_includes_default" +if test "x$ac_cv_header_gst_gst_h" = xyes +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether gint64 defined by gst/gst.h is indeed 64-bit" >&5
+printf %s "checking whether gint64 defined by gst/gst.h is indeed 64-bit... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <gst/gst.h> int -main () +main (void) { static int a[sizeof(gint64) > 4 ? 1 : -1]; if (a[0]) return 0; ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gst_pad_new in -lgstreamer-1.0" >&5
-$as_echo_n "checking for gst_pad_new in -lgstreamer-1.0... " >&6; } -if ${ac_cv_lib_gstreamer_1_0_gst_pad_new+:} false; then :
- $as_echo_n "(cached) " >&6
-else +if ac_fn_c_try_compile "$LINENO" +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gst_pad_new in -lgstreamer-1.0" >&5
+printf %s "checking for gst_pad_new in -lgstreamer-1.0... " >&6; } +if test ${ac_cv_lib_gstreamer_1_0_gst_pad_new+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lgstreamer-1.0 $GSTREAMER_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14664,49 +16884,48 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gst_pad_new (); int -main () +main (void) { return gst_pad_new (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_gstreamer_1_0_gst_pad_new=yes -else +else $as_nop ac_cv_lib_gstreamer_1_0_gst_pad_new=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gstreamer_1_0_gst_pad_new" >&5 -$as_echo "$ac_cv_lib_gstreamer_1_0_gst_pad_new" >&6; } -if test "x$ac_cv_lib_gstreamer_1_0_gst_pad_new" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gstreamer_1_0_gst_pad_new" >&5 +printf "%s\n" "$ac_cv_lib_gstreamer_1_0_gst_pad_new" >&6; } +if test "x$ac_cv_lib_gstreamer_1_0_gst_pad_new" = xyes +then : : fi
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; } ac_glib2_broken=yes as_fn_append wine_notices "|glib-2.0 pkgconfig configuration is for the wrong architecture, winegstreamer won't be built." fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi
CPPFLAGS=$ac_save_CPPFLAGS
fi if test "x$with_gstreamer" = xyes -o "x$with_quicktime" = xno -o "x$ac_cv_header_QuickTime_ImageCompression_h" != xyes then
- if test "x$ac_glib2_broken" != xyes -a "x$ac_cv_lib_gstreamer_1_0_gst_pad_new" != xyes; then :
- if test "x$ac_glib2_broken" != xyes -a "x$ac_cv_lib_gstreamer_1_0_gst_pad_new" != xyes
+then : case "x$with_gstreamer" in x) as_fn_append wine_notices "|gstreamer-1.0 base plugins ${notice_platform}development files not found, GStreamer won't be supported." ;; xno) ;; @@ -14722,11 +16941,12 @@ ALSA_LIBS=""
if test "x$with_alsa" != "xno" then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for snd_pcm_hw_params_get_access_mask in -lasound" >&5
-$as_echo_n "checking for snd_pcm_hw_params_get_access_mask in -lasound... " >&6; } -if ${ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for snd_pcm_hw_params_get_access_mask in -lasound" >&5
+printf %s "checking for snd_pcm_hw_params_get_access_mask in -lasound... " >&6; } +if test ${ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lasound $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14735,45 +16955,45 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char snd_pcm_hw_params_get_access_mask (); int -main () +main (void) { return snd_pcm_hw_params_get_access_mask (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask=yes -else +else $as_nop ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask" >&5 -$as_echo "$ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask" >&6; } -if test "x$ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask" >&5 +printf "%s\n" "$ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask" >&6; } +if test "x$ac_cv_lib_asound_snd_pcm_hw_params_get_access_mask" = xyes +then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <alsa/asoundlib.h> int -main () +main (void) { snd_pcm_hw_params_get_access_mask(NULL, NULL) ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ALSA_LIBS="-lasound" fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi
fi @@ -14788,23 +17008,24 @@ then fi ac_oss_incl="-I${OSSLIBDIR:-/usr/lib/oss}/include" CPPFLAGS="$CPPFLAGS $ac_oss_incl"
- ac_fn_c_check_header_mongrel "$LINENO" "sys/soundcard.h" "ac_cv_header_sys_soundcard_h" "$ac_includes_default"
-if test "x$ac_cv_header_sys_soundcard_h" = xyes; then :
- ac_fn_c_check_header_compile "$LINENO" "sys/soundcard.h" "ac_cv_header_sys_soundcard_h" "$ac_includes_default"
+if test "x$ac_cv_header_sys_soundcard_h" = xyes +then : ac_fn_c_check_member "$LINENO" "oss_sysinfo" "numaudioengines" "ac_cv_member_oss_sysinfo_numaudioengines" "#include <sys/soundcard.h> " -if test "x$ac_cv_member_oss_sysinfo_numaudioengines" = xyes; then : +if test "x$ac_cv_member_oss_sysinfo_numaudioengines" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_OSS_SYSINFO_NUMAUDIOENGINES 1 -_ACEOF +printf "%s\n" "#define HAVE_OSS_SYSINFO_NUMAUDIOENGINES 1" >>confdefs.h
OSS4_CFLAGS="$ac_oss_incl"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _oss_ioctl in -lossaudio" >&5
-$as_echo_n "checking for _oss_ioctl in -lossaudio... " >&6; } -if ${ac_cv_lib_ossaudio__oss_ioctl+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for _oss_ioctl in -lossaudio" >&5
+printf %s "checking for _oss_ioctl in -lossaudio... " >&6; } +if test ${ac_cv_lib_ossaudio__oss_ioctl+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lossaudio $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14813,30 +17034,29 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char _oss_ioctl (); int -main () +main (void) { return _oss_ioctl (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_ossaudio__oss_ioctl=yes -else +else $as_nop ac_cv_lib_ossaudio__oss_ioctl=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ossaudio__oss_ioctl" >&5 -$as_echo "$ac_cv_lib_ossaudio__oss_ioctl" >&6; } -if test "x$ac_cv_lib_ossaudio__oss_ioctl" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ossaudio__oss_ioctl" >&5 +printf "%s\n" "$ac_cv_lib_ossaudio__oss_ioctl" >&6; } +if test "x$ac_cv_lib_ossaudio__oss_ioctl" = xyes +then : OSS4_LIBS="-lossaudio"
fi @@ -14845,10 +17065,10 @@ fi
fi
- CPPFLAGS="$ac_save_CPPFLAGS"
fi -if test "x$ac_cv_member_oss_sysinfo_numaudioengines" != xyes; then : +if test "x$ac_cv_member_oss_sysinfo_numaudioengines" != xyes +then : case "x$with_oss" in x) as_fn_append wine_notices "|OSS sound system found but too old (OSSv4 needed), OSS won't be supported." ;; xno) ;; @@ -14860,35 +17080,39 @@ fi
if test "x$with_udev" != "xno" then
- if ${UDEV_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${UDEV_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : UDEV_CFLAGS=`$PKG_CONFIG --cflags libudev 2>/dev/null` fi fi
-if ${UDEV_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${UDEV_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : UDEV_LIBS=`$PKG_CONFIG --libs libudev 2>/dev/null` fi fi
UDEV_LIBS=${UDEV_LIBS:-"-ludev"} -$as_echo "$as_me:${as_lineno-$LINENO}: libudev cflags: $UDEV_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libudev libs: $UDEV_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libudev cflags: $UDEV_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libudev libs: $UDEV_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $UDEV_CFLAGS" -for ac_header in libudev.h
for ac_header in libudev.h
do :
- ac_fn_c_check_header_mongrel "$LINENO" "libudev.h" "ac_cv_header_libudev_h" "$ac_includes_default"
-if test "x$ac_cv_header_libudev_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_LIBUDEV_H 1 -_ACEOF
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for udev_new in -ludev" >&5
-$as_echo_n "checking for udev_new in -ludev... " >&6; } -if ${ac_cv_lib_udev_udev_new+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- ac_fn_c_check_header_compile "$LINENO" "libudev.h" "ac_cv_header_libudev_h" "$ac_includes_default"
+if test "x$ac_cv_header_libudev_h" = xyes +then :
- printf "%s\n" "#define HAVE_LIBUDEV_H 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for udev_new in -ludev" >&5
+printf %s "checking for udev_new in -ludev... " >&6; } +if test ${ac_cv_lib_udev_udev_new+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-ludev $UDEV_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -14897,47 +17121,46 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char udev_new (); int -main () +main (void) { return udev_new (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_udev_udev_new=yes -else +else $as_nop ac_cv_lib_udev_udev_new=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_udev_udev_new" >&5 -$as_echo "$ac_cv_lib_udev_udev_new" >&6; } -if test "x$ac_cv_lib_udev_udev_new" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_udev_udev_new" >&5 +printf "%s\n" "$ac_cv_lib_udev_udev_new" >&6; } +if test "x$ac_cv_lib_udev_udev_new" = xyes +then :
-$as_echo "#define HAVE_UDEV 1" >>confdefs.h +printf "%s\n" "#define HAVE_UDEV 1" >>confdefs.h
-else +else $as_nop UDEV_LIBS="" fi
-else +else $as_nop UDEV_LIBS="" fi
done
CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$UDEV_LIBS" = "x"; then : +if test "x$UDEV_LIBS" = "x" +then : case "x$with_udev" in x) as_fn_append wine_notices "|libudev ${notice_platform}development files not found, plug and play won't be supported." ;; xno) ;; @@ -14949,89 +17172,97 @@ fi
if test "x$with_unwind" != xno then
- if ${UNWIND_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${UNWIND_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : UNWIND_CFLAGS=`$PKG_CONFIG --cflags libunwind 2>/dev/null` fi fi
-if ${UNWIND_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${UNWIND_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : UNWIND_LIBS=`$PKG_CONFIG --libs libunwind 2>/dev/null` fi fi
UNWIND_LIBS=${UNWIND_LIBS:-"-lunwind"} -$as_echo "$as_me:${as_lineno-$LINENO}: libunwind cflags: $UNWIND_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libunwind libs: $UNWIND_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libunwind cflags: $UNWIND_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libunwind libs: $UNWIND_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $UNWIND_CFLAGS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for unw_step" >&5 -$as_echo_n "checking for unw_step... " >&6; } -if ${wine_cv_have_unw_step+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for unw_step" >&5 +printf %s "checking for unw_step... " >&6; } +if test ${wine_cv_have_unw_step+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define UNW_LOCAL_ONLY #include <libunwind.h> int -main () +main (void) { unw_cursor_t cursor; unw_step( &cursor ); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_have_unw_step="yes" -else +else $as_nop wine_cv_have_unw_step="no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_unw_step" >&5 -$as_echo "$wine_cv_have_unw_step" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_unw_step" >&5 +printf "%s\n" "$wine_cv_have_unw_step" >&6; } if test "$wine_cv_have_unw_step" = no -a -n "$UNWIND_LIBS" then save_libs=$LIBS UNWIND_LIBS="-static-libgcc $UNWIND_LIBS" LIBS="$UNWIND_LIBS $LIBS"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for unw_step in libunwind" >&5
-$as_echo_n "checking for unw_step in libunwind... " >&6; } -if ${wine_cv_have_libunwind_unw_step+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for unw_step in libunwind" >&5
+printf %s "checking for unw_step in libunwind... " >&6; } +if test ${wine_cv_have_libunwind_unw_step+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define UNW_LOCAL_ONLY #include <libunwind.h> int -main () +main (void) { unw_cursor_t cursor; unw_step( &cursor ); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_have_libunwind_unw_step="yes" -else +else $as_nop wine_cv_have_libunwind_unw_step="no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_libunwind_unw_step" >&5 -$as_echo "$wine_cv_have_libunwind_unw_step" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_libunwind_unw_step" >&5 +printf "%s\n" "$wine_cv_have_libunwind_unw_step" >&6; } LIBS=$save_libs fi test "$wine_cv_have_libunwind_unw_step" = yes || UNWIND_LIBS="" if test "x$wine_cv_have_unw_step$wine_cv_have_libunwind_unw_step" != xnono then
-$as_echo "#define HAVE_LIBUNWIND 1" >>confdefs.h +printf "%s\n" "#define HAVE_LIBUNWIND 1" >>confdefs.h
fi
CPPFLAGS=$ac_save_CPPFLAGS @@ -15039,7 +17270,8 @@ CPPFLAGS=$ac_save_CPPFLAGS fi case $host in aarch64*|*-darwin*)
- if test "x$wine_cv_have_unw_step$wine_cv_have_libunwind_unw_step" = xnono; then :
- if test "x$wine_cv_have_unw_step$wine_cv_have_libunwind_unw_step" = xnono
+then : case "x$with_unwind" in x) as_fn_append wine_notices "|libunwind ${notice_platform}development files not found, stack unwinding won't work." ;; xno) ;; @@ -15052,35 +17284,39 @@ esac
if test "x$with_sdl" != "xno" then
- if ${SDL2_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${SDL2_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : SDL2_CFLAGS=`$PKG_CONFIG --cflags sdl2 2>/dev/null` fi fi
-if ${SDL2_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${SDL2_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : SDL2_LIBS=`$PKG_CONFIG --libs sdl2 2>/dev/null` fi fi
SDL2_LIBS=${SDL2_LIBS:-"-lSDL2"} -$as_echo "$as_me:${as_lineno-$LINENO}: sdl2 cflags: $SDL2_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: sdl2 libs: $SDL2_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: sdl2 cflags: $SDL2_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: sdl2 libs: $SDL2_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $SDL2_CFLAGS" -for ac_header in SDL.h
for ac_header in SDL.h
do :
- ac_fn_c_check_header_mongrel "$LINENO" "SDL.h" "ac_cv_header_SDL_h" "$ac_includes_default"
-if test "x$ac_cv_header_SDL_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_SDL_H 1 -_ACEOF
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lSDL2" >&5
-$as_echo_n "checking for -lSDL2... " >&6; } -if ${ac_cv_lib_soname_SDL2+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- ac_fn_c_check_header_compile "$LINENO" "SDL.h" "ac_cv_header_SDL_h" "$ac_includes_default"
+if test "x$ac_cv_header_SDL_h" = xyes +then :
- printf "%s\n" "#define HAVE_SDL_H 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lSDL2" >&5
+printf %s "checking for -lSDL2... " >&6; } +if test ${ac_cv_lib_soname_SDL2+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lSDL2 $SDL2_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15089,56 +17325,54 @@ LIBS="-lSDL2 $SDL2_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char SDL_Init (); int -main () +main (void) { return SDL_Init (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_SDL2=`$ac_cv_path_LDD conftest.exe | grep "SDL2" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_SDL2=`$OTOOL -L conftest$ac_exeext | grep "libSDL2-2.0*\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libSDL2-2.0*.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_SDL2=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libSDL2-2.0*\.$LIBEXT" | sed -e "s/^.*\[\(libSDL2-2.0*\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_SDL2:+false} :; then :
if ${ac_cv_lib_soname_SDL2:+false} :
+then : ac_cv_lib_soname_SDL2=`$LDD conftest$ac_exeext | grep "libSDL2-2.0*\.$LIBEXT" | sed -e "s/^.*(libSDL2-2.0*.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_SDL2= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_SDL2:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_SDL2:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_SDL2" >&5
-$as_echo "$ac_cv_lib_soname_SDL2" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_SDL2" >&5
+printf "%s\n" "$ac_cv_lib_soname_SDL2" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBSDL2 "$ac_cv_lib_soname_SDL2" -_ACEOF +printf "%s\n" "#define SONAME_LIBSDL2 "$ac_cv_lib_soname_SDL2"" >>confdefs.h
fi fi
done
CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_SDL2" = "x"; then : +if test "x$ac_cv_lib_soname_SDL2" = "x" +then : case "x$with_sdl" in x) as_fn_append wine_notices "|libSDL2 ${notice_platform}development files not found, SDL2 won't be supported." ;; xno) ;; @@ -15150,35 +17384,39 @@ fi
if test "x$with_faudio" != "xno" then
- if ${FAUDIO_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${FAUDIO_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : FAUDIO_CFLAGS=`$PKG_CONFIG --cflags FAudio 2>/dev/null` fi fi
-if ${FAUDIO_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${FAUDIO_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : FAUDIO_LIBS=`$PKG_CONFIG --libs FAudio 2>/dev/null` fi fi
FAUDIO_LIBS=${FAUDIO_LIBS:-"-lFAudio"} -$as_echo "$as_me:${as_lineno-$LINENO}: FAudio cflags: $FAUDIO_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: FAudio libs: $FAUDIO_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: FAudio cflags: $FAUDIO_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: FAudio libs: $FAUDIO_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $FAUDIO_CFLAGS" -for ac_header in FAudio.h
for ac_header in FAudio.h
do :
- ac_fn_c_check_header_mongrel "$LINENO" "FAudio.h" "ac_cv_header_FAudio_h" "$ac_includes_default"
-if test "x$ac_cv_header_FAudio_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_FAUDIO_H 1 -_ACEOF
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lFAudio" >&5
-$as_echo_n "checking for -lFAudio... " >&6; } -if ${ac_cv_lib_soname_FAudio+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- ac_fn_c_check_header_compile "$LINENO" "FAudio.h" "ac_cv_header_FAudio_h" "$ac_includes_default"
+if test "x$ac_cv_header_FAudio_h" = xyes +then :
- printf "%s\n" "#define HAVE_FAUDIO_H 1" >>confdefs.h
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lFAudio" >&5
+printf %s "checking for -lFAudio... " >&6; } +if test ${ac_cv_lib_soname_FAudio+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lFAudio $FAUDIO_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15187,75 +17425,83 @@ LIBS="-lFAudio $FAUDIO_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char FAudioCreate (); int -main () +main (void) { return FAudioCreate (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_FAudio=`$ac_cv_path_LDD conftest.exe | grep "FAudio" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_FAudio=`$OTOOL -L conftest$ac_exeext | grep "libFAudio*\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libFAudio*.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_FAudio=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libFAudio*\.$LIBEXT" | sed -e "s/^.*\[\(libFAudio*\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_FAudio:+false} :; then :
if ${ac_cv_lib_soname_FAudio:+false} :
+then : ac_cv_lib_soname_FAudio=`$LDD conftest$ac_exeext | grep "libFAudio*\.$LIBEXT" | sed -e "s/^.*(libFAudio*.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_FAudio= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_FAudio:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_FAudio:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_FAudio" >&5
-$as_echo "$ac_cv_lib_soname_FAudio" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_FAudio" >&5
+printf "%s\n" "$ac_cv_lib_soname_FAudio" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBFAUDIO "$ac_cv_lib_soname_FAudio" -_ACEOF +printf "%s\n" "#define SONAME_LIBFAUDIO "$ac_cv_lib_soname_FAudio"" >>confdefs.h
fi fi
done
ac_wine_check_funcs_save_LIBS="$LIBS"
LIBS="$LIBS $FAUDIO_LIBS" -for ac_func in FAudio_CommitOperationSet \
F3DAudioInitialize8 \
FAudioLinkedVersion \
FAudioCreateReverb9WithCustomAllocatorEXT
-do :
- as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test "x$"$as_ac_var"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_func "$LINENO" "FAudio_CommitOperationSet" "ac_cv_func_FAudio_CommitOperationSet" +if test "x$ac_cv_func_FAudio_CommitOperationSet" = xyes +then :
- printf "%s\n" "#define HAVE_FAUDIO_COMMITOPERATIONSET 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "F3DAudioInitialize8" "ac_cv_func_F3DAudioInitialize8" +if test "x$ac_cv_func_F3DAudioInitialize8" = xyes +then :
- printf "%s\n" "#define HAVE_F3DAUDIOINITIALIZE8 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "FAudioLinkedVersion" "ac_cv_func_FAudioLinkedVersion" +if test "x$ac_cv_func_FAudioLinkedVersion" = xyes +then :
- printf "%s\n" "#define HAVE_FAUDIOLINKEDVERSION 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "FAudioCreateReverb9WithCustomAllocatorEXT" "ac_cv_func_FAudioCreateReverb9WithCustomAllocatorEXT" +if test "x$ac_cv_func_FAudioCreateReverb9WithCustomAllocatorEXT" = xyes +then :
- printf "%s\n" "#define HAVE_FAUDIOCREATEREVERB9WITHCUSTOMALLOCATOREXT 1" >>confdefs.h
fi -done
LIBS="$ac_wine_check_funcs_save_LIBS"
CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_FAudio" = "x"; then : +if test "x$ac_cv_lib_soname_FAudio" = "x" +then : case "x$with_faudio" in x) as_fn_append wine_notices "|libFAudio ${notice_platform}development files not found, XAudio2 won't be supported." ;; xno) ;; @@ -15267,44 +17513,50 @@ fi
if test "x$with_capi" != "xno" then
- if ${CAPI20_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${CAPI20_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : CAPI20_CFLAGS=`$PKG_CONFIG --cflags capi20 2>/dev/null` fi fi
-if ${CAPI20_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${CAPI20_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : CAPI20_LIBS=`$PKG_CONFIG --libs capi20 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: capi20 cflags: $CAPI20_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: capi20 libs: $CAPI20_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: capi20 cflags: $CAPI20_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: capi20 libs: $CAPI20_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $CAPI20_CFLAGS"
- for ac_header in capi20.h linux/capi.h
-do :
- as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "#define __user
- ac_fn_c_check_header_compile "$LINENO" "capi20.h" "ac_cv_header_capi20_h" "#define __user
" -if eval test "x$"$as_ac_Header"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +if test "x$ac_cv_header_capi20_h" = xyes +then :
- printf "%s\n" "#define HAVE_CAPI20_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "linux/capi.h" "ac_cv_header_linux_capi_h" "#define __user +" +if test "x$ac_cv_header_linux_capi_h" = xyes +then :
- printf "%s\n" "#define HAVE_LINUX_CAPI_H 1" >>confdefs.h
-done +fi
if test "$ac_cv_header_capi20_h" = "yes" -a "$ac_cv_header_linux_capi_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lcapi20" >&5
-$as_echo_n "checking for -lcapi20... " >&6; } -if ${ac_cv_lib_soname_capi20+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lcapi20" >&5
+printf %s "checking for -lcapi20... " >&6; } +if test ${ac_cv_lib_soname_capi20+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lcapi20 $CAPI20_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15313,45 +17565,43 @@ LIBS="-lcapi20 $CAPI20_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char capi20_register (); int -main () +main (void) { return capi20_register (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_capi20=`$ac_cv_path_LDD conftest.exe | grep "capi20" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_capi20=`$OTOOL -L conftest$ac_exeext | grep "libcapi20\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libcapi20.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_capi20=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libcapi20\.$LIBEXT" | sed -e "s/^.*\[\(libcapi20\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_capi20:+false} :; then :
if ${ac_cv_lib_soname_capi20:+false} :
+then : ac_cv_lib_soname_capi20=`$LDD conftest$ac_exeext | grep "libcapi20\.$LIBEXT" | sed -e "s/^.*(libcapi20.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_capi20= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_capi20:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_capi20:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_capi20" >&5
-$as_echo "$ac_cv_lib_soname_capi20" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_capi20" >&5
+printf "%s\n" "$ac_cv_lib_soname_capi20" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBCAPI20 "$ac_cv_lib_soname_capi20" -_ACEOF +printf "%s\n" "#define SONAME_LIBCAPI20 "$ac_cv_lib_soname_capi20"" >>confdefs.h
fi @@ -15359,7 +17609,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_capi20" = "x"; then : +if test "x$ac_cv_lib_soname_capi20" = "x" +then : case "x$with_capi" in x) as_fn_append wine_notices "|libcapi20 ${notice_platform}development files not found, ISDN won't be supported." ;; xno) ;; @@ -15371,43 +17622,48 @@ fi
if test "x$with_cups" != "xno" then
- if ${CUPS_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${CUPS_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : CUPS_CFLAGS=`$PKG_CONFIG --cflags cups 2>/dev/null` fi fi test "$cross_compiling" = yes || CUPS_CFLAGS=${CUPS_CFLAGS:-`${CUPS_CONFIG:-cups-config} --cflags 2>/dev/null`} -if ${CUPS_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${CUPS_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : CUPS_LIBS=`$PKG_CONFIG --libs cups 2>/dev/null` fi fi test "$cross_compiling" = yes || CUPS_LIBS=${CUPS_LIBS:-`${CUPS_CONFIG:-cups-config} --libs 2>/dev/null`} CUPS_LIBS=${CUPS_LIBS:-"-lcups"} -$as_echo "$as_me:${as_lineno-$LINENO}: cups cflags: $CUPS_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: cups libs: $CUPS_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: cups cflags: $CUPS_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: cups libs: $CUPS_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $CUPS_CFLAGS" -for ac_header in cups/cups.h cups/ppd.h -do :
- as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test "x$"$as_ac_Header"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "cups/cups.h" "ac_cv_header_cups_cups_h" "$ac_includes_default" +if test "x$ac_cv_header_cups_cups_h" = xyes +then :
- printf "%s\n" "#define HAVE_CUPS_CUPS_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "cups/ppd.h" "ac_cv_header_cups_ppd_h" "$ac_includes_default" +if test "x$ac_cv_header_cups_ppd_h" = xyes +then :
- printf "%s\n" "#define HAVE_CUPS_PPD_H 1" >>confdefs.h
-done +fi
if test "$ac_cv_header_cups_cups_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lcups" >&5
-$as_echo_n "checking for -lcups... " >&6; } -if ${ac_cv_lib_soname_cups+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lcups" >&5
+printf %s "checking for -lcups... " >&6; } +if test ${ac_cv_lib_soname_cups+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lcups $CUPS_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15416,45 +17672,43 @@ LIBS="-lcups $CUPS_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char cupsGetDefault (); int -main () +main (void) { return cupsGetDefault (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_cups=`$ac_cv_path_LDD conftest.exe | grep "cups" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_cups=`$OTOOL -L conftest$ac_exeext | grep "libcups\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libcups.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_cups=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libcups\.$LIBEXT" | sed -e "s/^.*\[\(libcups\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_cups:+false} :; then :
if ${ac_cv_lib_soname_cups:+false} :
+then : ac_cv_lib_soname_cups=`$LDD conftest$ac_exeext | grep "libcups\.$LIBEXT" | sed -e "s/^.*(libcups.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_cups= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_cups:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_cups:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; } CUPS_LIBS="" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_cups" >&5
-$as_echo "$ac_cv_lib_soname_cups" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_cups" >&5
+printf "%s\n" "$ac_cv_lib_soname_cups" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBCUPS "$ac_cv_lib_soname_cups" -_ACEOF +printf "%s\n" "#define SONAME_LIBCUPS "$ac_cv_lib_soname_cups"" >>confdefs.h
fi @@ -15465,7 +17719,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_cups" = "x"; then : +if test "x$ac_cv_lib_soname_cups" = "x" +then : case "x$with_cups" in x) as_fn_append wine_notices "|libcups ${notice_platform}development files not found, CUPS won't be supported." ;; xno) ;; @@ -15477,42 +17732,42 @@ fi
if test "x$with_fontconfig" != "xno" then
- if ${FONTCONFIG_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${FONTCONFIG_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : FONTCONFIG_CFLAGS=`$PKG_CONFIG --cflags fontconfig 2>/dev/null` fi fi test "$cross_compiling" = yes || FONTCONFIG_CFLAGS=${FONTCONFIG_CFLAGS:-$X_CFLAGS} -if ${FONTCONFIG_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${FONTCONFIG_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : FONTCONFIG_LIBS=`$PKG_CONFIG --libs fontconfig 2>/dev/null` fi fi test "$cross_compiling" = yes || FONTCONFIG_LIBS=${FONTCONFIG_LIBS:-$X_LIBS}
-$as_echo "$as_me:${as_lineno-$LINENO}: fontconfig cflags: $FONTCONFIG_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: fontconfig libs: $FONTCONFIG_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: fontconfig cflags: $FONTCONFIG_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: fontconfig libs: $FONTCONFIG_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $FONTCONFIG_CFLAGS" -for ac_header in fontconfig/fontconfig.h -do :
- ac_fn_c_check_header_mongrel "$LINENO" "fontconfig/fontconfig.h" "ac_cv_header_fontconfig_fontconfig_h" "$ac_includes_default"
-if test "x$ac_cv_header_fontconfig_fontconfig_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_FONTCONFIG_FONTCONFIG_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "fontconfig/fontconfig.h" "ac_cv_header_fontconfig_fontconfig_h" "$ac_includes_default" +if test "x$ac_cv_header_fontconfig_fontconfig_h" = xyes +then :
- printf "%s\n" "#define HAVE_FONTCONFIG_FONTCONFIG_H 1" >>confdefs.h
fi
-done
if test "$ac_cv_header_fontconfig_fontconfig_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lfontconfig" >&5
-$as_echo_n "checking for -lfontconfig... " >&6; } -if ${ac_cv_lib_soname_fontconfig+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lfontconfig" >&5
+printf %s "checking for -lfontconfig... " >&6; } +if test ${ac_cv_lib_soname_fontconfig+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lfontconfig $FONTCONFIG_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15521,45 +17776,43 @@ LIBS="-lfontconfig $FONTCONFIG_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char FcInit (); int -main () +main (void) { return FcInit (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_fontconfig=`$ac_cv_path_LDD conftest.exe | grep "fontconfig" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_fontconfig=`$OTOOL -L conftest$ac_exeext | grep "libfontconfig\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libfontconfig.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_fontconfig=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libfontconfig\.$LIBEXT" | sed -e "s/^.*\[\(libfontconfig\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_fontconfig:+false} :; then :
if ${ac_cv_lib_soname_fontconfig:+false} :
+then : ac_cv_lib_soname_fontconfig=`$LDD conftest$ac_exeext | grep "libfontconfig\.$LIBEXT" | sed -e "s/^.*(libfontconfig.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_fontconfig= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_fontconfig:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_fontconfig:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; } FONTCONFIG_CFLAGS="" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_fontconfig" >&5
-$as_echo "$ac_cv_lib_soname_fontconfig" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_fontconfig" >&5
+printf "%s\n" "$ac_cv_lib_soname_fontconfig" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBFONTCONFIG "$ac_cv_lib_soname_fontconfig" -_ACEOF +printf "%s\n" "#define SONAME_LIBFONTCONFIG "$ac_cv_lib_soname_fontconfig"" >>confdefs.h
fi @@ -15569,7 +17822,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_fontconfig" = "x"; then : +if test "x$ac_cv_lib_soname_fontconfig" = "x" +then : case "x$with_fontconfig" in x) as_fn_append wine_notices "|fontconfig ${notice_platform}development files not found, fontconfig won't be supported." ;; xno) ;; @@ -15581,11 +17835,12 @@ fi
if test "$ac_cv_header_gsm_h" = "yes" -o "$ac_cv_header_gsm_gsm_h" = "yes" then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lgsm" >&5
-$as_echo_n "checking for -lgsm... " >&6; } -if ${ac_cv_lib_soname_gsm+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lgsm" >&5
+printf %s "checking for -lgsm... " >&6; } +if test ${ac_cv_lib_soname_gsm+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lgsm $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15594,50 +17849,49 @@ LIBS="-lgsm $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gsm_create (); int -main () +main (void) { return gsm_create (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_gsm=`$ac_cv_path_LDD conftest.exe | grep "gsm" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_gsm=`$OTOOL -L conftest$ac_exeext | grep "libgsm\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libgsm.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_gsm=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libgsm\.$LIBEXT" | sed -e "s/^.*\[\(libgsm\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_gsm:+false} :; then :
if ${ac_cv_lib_soname_gsm:+false} :
+then : ac_cv_lib_soname_gsm=`$LDD conftest$ac_exeext | grep "libgsm\.$LIBEXT" | sed -e "s/^.*(libgsm.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_gsm= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_gsm:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_gsm:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_gsm" >&5
-$as_echo "$ac_cv_lib_soname_gsm" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_gsm" >&5
+printf "%s\n" "$ac_cv_lib_soname_gsm" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBGSM "$ac_cv_lib_soname_gsm" -_ACEOF +printf "%s\n" "#define SONAME_LIBGSM "$ac_cv_lib_soname_gsm"" >>confdefs.h
fi fi -if test "x$ac_cv_lib_soname_gsm" = "x"; then : +if test "x$ac_cv_lib_soname_gsm" = "x" +then : case "x$with_gsm" in x) as_fn_append wine_notices "|libgsm ${notice_platform}development files not found, gsm 06.10 codec won't be supported." ;; xno) ;; @@ -15649,42 +17903,42 @@ fi
if test "x$with_krb5" != "xno" then
- if ${KRB5_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${KRB5_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : KRB5_CFLAGS=`$PKG_CONFIG --cflags krb5 2>/dev/null` fi fi test "$cross_compiling" = yes || KRB5_CFLAGS=${KRB5_CFLAGS:-`${KRB5_CONFIG:-krb5-config} --cflags 2>/dev/null`} -if ${KRB5_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${KRB5_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : KRB5_LIBS=`$PKG_CONFIG --libs krb5 2>/dev/null` fi fi test "$cross_compiling" = yes || KRB5_LIBS=${KRB5_LIBS:-`${KRB5_CONFIG:-krb5-config} --libs 2>/dev/null`}
-$as_echo "$as_me:${as_lineno-$LINENO}: krb5 cflags: $KRB5_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: krb5 libs: $KRB5_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: krb5 cflags: $KRB5_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: krb5 libs: $KRB5_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $KRB5_CFLAGS" -for ac_header in krb5/krb5.h -do :
- ac_fn_c_check_header_mongrel "$LINENO" "krb5/krb5.h" "ac_cv_header_krb5_krb5_h" "$ac_includes_default"
-if test "x$ac_cv_header_krb5_krb5_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_KRB5_KRB5_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "krb5/krb5.h" "ac_cv_header_krb5_krb5_h" "$ac_includes_default" +if test "x$ac_cv_header_krb5_krb5_h" = xyes +then :
- printf "%s\n" "#define HAVE_KRB5_KRB5_H 1" >>confdefs.h
fi
-done
if test "$ac_cv_header_krb5_krb5_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lkrb5" >&5
-$as_echo_n "checking for -lkrb5... " >&6; } -if ${ac_cv_lib_soname_krb5+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lkrb5" >&5
+printf %s "checking for -lkrb5... " >&6; } +if test ${ac_cv_lib_soname_krb5+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lkrb5 $KRB5_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15693,45 +17947,43 @@ LIBS="-lkrb5 $KRB5_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char krb5_is_config_principal (); int -main () +main (void) { return krb5_is_config_principal (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_krb5=`$ac_cv_path_LDD conftest.exe | grep "krb5" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_krb5=`$OTOOL -L conftest$ac_exeext | grep "libkrb5\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libkrb5.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_krb5=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libkrb5\.$LIBEXT" | sed -e "s/^.*\[\(libkrb5\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_krb5:+false} :; then :
if ${ac_cv_lib_soname_krb5:+false} :
+then : ac_cv_lib_soname_krb5=`$LDD conftest$ac_exeext | grep "libkrb5\.$LIBEXT" | sed -e "s/^.*(libkrb5.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_krb5= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_krb5:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_krb5:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; } KRB5_CFLAGS="" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_krb5" >&5
-$as_echo "$ac_cv_lib_soname_krb5" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_krb5" >&5
+printf "%s\n" "$ac_cv_lib_soname_krb5" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBKRB5 "$ac_cv_lib_soname_krb5" -_ACEOF +printf "%s\n" "#define SONAME_LIBKRB5 "$ac_cv_lib_soname_krb5"" >>confdefs.h
fi @@ -15741,7 +17993,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_krb5" = "x"; then : +if test "x$ac_cv_lib_soname_krb5" = "x" +then : case "x$with_krb5" in x) as_fn_append wine_notices "|libkrb5 ${notice_platform}development files not found (or too old), Kerberos won't be supported." ;; xno) ;; @@ -15754,43 +18007,48 @@ test "x$ac_cv_lib_soname_krb5" != "x" || with_gssapi=${with_gssapi:-no}
if test "x$with_gssapi" != "xno" then
- if ${GSSAPI_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${GSSAPI_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : GSSAPI_CFLAGS=`$PKG_CONFIG --cflags krb5-gssapi 2>/dev/null` fi fi test "$cross_compiling" = yes || GSSAPI_CFLAGS=${GSSAPI_CFLAGS:-`${KRB5_CONFIG:-krb5-config} --cflags gssapi 2>/dev/null`} -if ${GSSAPI_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${GSSAPI_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : GSSAPI_LIBS=`$PKG_CONFIG --libs krb5-gssapi 2>/dev/null` fi fi test "$cross_compiling" = yes || GSSAPI_LIBS=${GSSAPI_LIBS:-`${KRB5_CONFIG:-krb5-config} --libs gssapi 2>/dev/null`}
-$as_echo "$as_me:${as_lineno-$LINENO}: krb5-gssapi cflags: $GSSAPI_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: krb5-gssapi libs: $GSSAPI_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: krb5-gssapi cflags: $GSSAPI_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: krb5-gssapi libs: $GSSAPI_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $GSSAPI_CFLAGS" -for ac_header in gssapi/gssapi.h gssapi/gssapi_ext.h -do :
- as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test "x$"$as_ac_Header"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "gssapi/gssapi.h" "ac_cv_header_gssapi_gssapi_h" "$ac_includes_default" +if test "x$ac_cv_header_gssapi_gssapi_h" = xyes +then :
- printf "%s\n" "#define HAVE_GSSAPI_GSSAPI_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "gssapi/gssapi_ext.h" "ac_cv_header_gssapi_gssapi_ext_h" "$ac_includes_default" +if test "x$ac_cv_header_gssapi_gssapi_ext_h" = xyes +then :
- printf "%s\n" "#define HAVE_GSSAPI_GSSAPI_EXT_H 1" >>confdefs.h
-done +fi
if test "$ac_cv_header_gssapi_gssapi_h" = "yes" -a "$ac_cv_header_gssapi_gssapi_ext_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lgssapi_krb5" >&5
-$as_echo_n "checking for -lgssapi_krb5... " >&6; } -if ${ac_cv_lib_soname_gssapi_krb5+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lgssapi_krb5" >&5
+printf %s "checking for -lgssapi_krb5... " >&6; } +if test ${ac_cv_lib_soname_gssapi_krb5+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lgssapi_krb5 $GSSAPI_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15799,45 +18057,43 @@ LIBS="-lgssapi_krb5 $GSSAPI_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gss_init_sec_context (); int -main () +main (void) { return gss_init_sec_context (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_gssapi_krb5=`$ac_cv_path_LDD conftest.exe | grep "gssapi_krb5" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_gssapi_krb5=`$OTOOL -L conftest$ac_exeext | grep "libgssapi_krb5\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libgssapi_krb5.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_gssapi_krb5=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libgssapi_krb5\.$LIBEXT" | sed -e "s/^.*\[\(libgssapi_krb5\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_gssapi_krb5:+false} :; then :
if ${ac_cv_lib_soname_gssapi_krb5:+false} :
+then : ac_cv_lib_soname_gssapi_krb5=`$LDD conftest$ac_exeext | grep "libgssapi_krb5\.$LIBEXT" | sed -e "s/^.*(libgssapi_krb5.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_gssapi_krb5= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_gssapi_krb5:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_gssapi_krb5:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; } GSSAPI_CFLAGS="" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_gssapi_krb5" >&5
-$as_echo "$ac_cv_lib_soname_gssapi_krb5" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_gssapi_krb5" >&5
+printf "%s\n" "$ac_cv_lib_soname_gssapi_krb5" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBGSSAPI_KRB5 "$ac_cv_lib_soname_gssapi_krb5" -_ACEOF +printf "%s\n" "#define SONAME_LIBGSSAPI_KRB5 "$ac_cv_lib_soname_gssapi_krb5"" >>confdefs.h
fi @@ -15847,7 +18103,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_gssapi_krb5" = "x"; then : +if test "x$ac_cv_lib_soname_gssapi_krb5" = "x" +then : case "x$with_gssapi" in x) as_fn_append wine_notices "|libgssapi_krb5 ${notice_platform}development files not found (or too old), no Kerberos SSP support." ;; xno) ;; @@ -15859,42 +18116,42 @@ fi
if test "x$with_jpeg" != "xno" then
- if ${JPEG_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${JPEG_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : JPEG_CFLAGS=`$PKG_CONFIG --cflags libjpeg 2>/dev/null` fi fi
-if ${JPEG_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${JPEG_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : JPEG_LIBS=`$PKG_CONFIG --libs libjpeg 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: libjpeg cflags: $JPEG_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libjpeg libs: $JPEG_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libjpeg cflags: $JPEG_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libjpeg libs: $JPEG_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $JPEG_CFLAGS" -for ac_header in jpeglib.h -do :
- ac_fn_c_check_header_mongrel "$LINENO" "jpeglib.h" "ac_cv_header_jpeglib_h" "$ac_includes_default"
-if test "x$ac_cv_header_jpeglib_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_JPEGLIB_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "jpeglib.h" "ac_cv_header_jpeglib_h" "$ac_includes_default" +if test "x$ac_cv_header_jpeglib_h" = xyes +then :
- printf "%s\n" "#define HAVE_JPEGLIB_H 1" >>confdefs.h
fi
-done
if test "$ac_cv_header_jpeglib_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -ljpeg" >&5
-$as_echo_n "checking for -ljpeg... " >&6; } -if ${ac_cv_lib_soname_jpeg+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -ljpeg" >&5
+printf %s "checking for -ljpeg... " >&6; } +if test ${ac_cv_lib_soname_jpeg+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-ljpeg $JPEG_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -15902,46 +18159,44 @@ LIBS="-ljpeg $JPEG_LIBS $LIBS"
/* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC
- builtin and then its argument prototype would still apply. */
-#ifdef __cplusplus -extern "C" -#endif
- builtin and then its argument prototype would still apply. */
char jpeg_start_decompress (); int -main () +main (void) { return jpeg_start_decompress (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_jpeg=`$ac_cv_path_LDD conftest.exe | grep "jpeg" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_jpeg=`$OTOOL -L conftest$ac_exeext | grep "libjpeg\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libjpeg.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_jpeg=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libjpeg\.$LIBEXT" | sed -e "s/^.*\[\(libjpeg\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_jpeg:+false} :; then :
if ${ac_cv_lib_soname_jpeg:+false} :
+then : ac_cv_lib_soname_jpeg=`$LDD conftest$ac_exeext | grep "libjpeg\.$LIBEXT" | sed -e "s/^.*(libjpeg.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_jpeg= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_jpeg:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_jpeg:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; } JPEG_CFLAGS="" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_jpeg" >&5
-$as_echo "$ac_cv_lib_soname_jpeg" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_jpeg" >&5
+printf "%s\n" "$ac_cv_lib_soname_jpeg" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBJPEG "$ac_cv_lib_soname_jpeg" -_ACEOF +printf "%s\n" "#define SONAME_LIBJPEG "$ac_cv_lib_soname_jpeg"" >>confdefs.h
fi @@ -15951,7 +18206,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_jpeg" = "x"; then : +if test "x$ac_cv_lib_soname_jpeg" = "x" +then : case "x$with_jpeg" in x) as_fn_append wine_warnings "|libjpeg ${notice_platform}development files not found, JPEG won't be supported." ;; xno) ;; @@ -15963,43 +18219,43 @@ fi
if test "x$with_jxrlib" != "xno" then
- if ${JXRLIB_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${JXRLIB_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : JXRLIB_CFLAGS=`$PKG_CONFIG --cflags jxrlib 2>/dev/null` fi fi test "$cross_compiling" = yes || JXRLIB_CFLAGS=${JXRLIB_CFLAGS:-${JXRLIB_CFLAGS:--I/usr/include/jxrlib}} -if ${JXRLIB_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${JXRLIB_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : JXRLIB_LIBS=`$PKG_CONFIG --libs jxrlib 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: jxrlib cflags: $JXRLIB_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: jxrlib libs: $JXRLIB_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: jxrlib cflags: $JXRLIB_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: jxrlib libs: $JXRLIB_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $JXRLIB_CFLAGS" -for ac_header in JXRGlue.h -do :
- ac_fn_c_check_header_compile "$LINENO" "JXRGlue.h" "ac_cv_header_JXRGlue_h" "#define FAR
+ac_fn_c_check_header_compile "$LINENO" "JXRGlue.h" "ac_cv_header_JXRGlue_h" "#define FAR " -if test "x$ac_cv_header_JXRGlue_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_JXRGLUE_H 1 -_ACEOF +if test "x$ac_cv_header_JXRGlue_h" = xyes +then :
- printf "%s\n" "#define HAVE_JXRGLUE_H 1" >>confdefs.h
fi
-done
if test "$ac_cv_header_JXRGlue_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -ljxrglue" >&5
-$as_echo_n "checking for -ljxrglue... " >&6; } -if ${ac_cv_lib_soname_jxrglue+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -ljxrglue" >&5
+printf %s "checking for -ljxrglue... " >&6; } +if test ${ac_cv_lib_soname_jxrglue+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-ljxrglue $JXRLIB_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16008,45 +18264,43 @@ LIBS="-ljxrglue $JXRLIB_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char PKImageDecode_Create_WMP (); int -main () +main (void) { return PKImageDecode_Create_WMP (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_jxrglue=`$ac_cv_path_LDD conftest.exe | grep "jxrglue" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_jxrglue=`$OTOOL -L conftest$ac_exeext | grep "libjxrglue\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libjxrglue.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_jxrglue=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libjxrglue\.$LIBEXT" | sed -e "s/^.*\[\(libjxrglue\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_jxrglue:+false} :; then :
if ${ac_cv_lib_soname_jxrglue:+false} :
+then : ac_cv_lib_soname_jxrglue=`$LDD conftest$ac_exeext | grep "libjxrglue\.$LIBEXT" | sed -e "s/^.*(libjxrglue.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_jxrglue= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_jxrglue:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_jxrglue:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; } JXRLIB_CFLAGS="" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_jxrglue" >&5
-$as_echo "$ac_cv_lib_soname_jxrglue" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_jxrglue" >&5
+printf "%s\n" "$ac_cv_lib_soname_jxrglue" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBJXRGLUE "$ac_cv_lib_soname_jxrglue" -_ACEOF +printf "%s\n" "#define SONAME_LIBJXRGLUE "$ac_cv_lib_soname_jxrglue"" >>confdefs.h
fi @@ -16056,7 +18310,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_jxrglue" = "x"; then : +if test "x$ac_cv_lib_soname_jxrglue" = "x" +then : case "x$with_jxrlib" in x) as_fn_append wine_notices "|jxrlib ${notice_platform}development files not found, JPEG-XR won't be supported." ;; xno) ;; @@ -16068,42 +18323,42 @@ fi
if test "x$with_png" != "xno" then
- if ${PNG_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${PNG_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : PNG_CFLAGS=`$PKG_CONFIG --cflags libpng 2>/dev/null` fi fi test "$cross_compiling" = yes || PNG_CFLAGS=${PNG_CFLAGS:-$X_CFLAGS} -if ${PNG_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${PNG_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : PNG_LIBS=`$PKG_CONFIG --libs libpng 2>/dev/null` fi fi test "$cross_compiling" = yes || PNG_LIBS=${PNG_LIBS:-$X_LIBS}
-$as_echo "$as_me:${as_lineno-$LINENO}: libpng cflags: $PNG_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libpng libs: $PNG_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libpng cflags: $PNG_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libpng libs: $PNG_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $PNG_CFLAGS" -for ac_header in png.h -do :
- ac_fn_c_check_header_mongrel "$LINENO" "png.h" "ac_cv_header_png_h" "$ac_includes_default"
-if test "x$ac_cv_header_png_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_PNG_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "png.h" "ac_cv_header_png_h" "$ac_includes_default" +if test "x$ac_cv_header_png_h" = xyes +then :
- printf "%s\n" "#define HAVE_PNG_H 1" >>confdefs.h
fi
-done
if test "$ac_cv_header_png_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lpng" >&5
-$as_echo_n "checking for -lpng... " >&6; } -if ${ac_cv_lib_soname_png+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lpng" >&5
+printf %s "checking for -lpng... " >&6; } +if test ${ac_cv_lib_soname_png+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lpng $PNG_LIBS -lm -lz $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16112,45 +18367,43 @@ LIBS="-lpng $PNG_LIBS -lm -lz $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char png_create_read_struct (); int -main () +main (void) { return png_create_read_struct (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_png=`$ac_cv_path_LDD conftest.exe | grep "png" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_png=`$OTOOL -L conftest$ac_exeext | grep "libpng[0-9]*\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libpng[0-9]*.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_png=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libpng[0-9]*\.$LIBEXT" | sed -e "s/^.*\[\(libpng[0-9]*\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_png:+false} :; then :
if ${ac_cv_lib_soname_png:+false} :
+then : ac_cv_lib_soname_png=`$LDD conftest$ac_exeext | grep "libpng[0-9]*\.$LIBEXT" | sed -e "s/^.*(libpng[0-9]*.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_png= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_png:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_png:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; } PNG_CFLAGS="" -else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_png" >&5
-$as_echo "$ac_cv_lib_soname_png" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_png" >&5
+printf "%s\n" "$ac_cv_lib_soname_png" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBPNG "$ac_cv_lib_soname_png" -_ACEOF +printf "%s\n" "#define SONAME_LIBPNG "$ac_cv_lib_soname_png"" >>confdefs.h
fi @@ -16160,7 +18413,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_png" = "x"; then : +if test "x$ac_cv_lib_soname_png" = "x" +then : case "x$with_png" in x) as_fn_append wine_warnings "|libpng ${notice_platform}development files not found, PNG won't be supported." ;; xno) ;; @@ -16172,42 +18426,42 @@ fi
if test "x$with_tiff" != "xno" then
- if ${TIFF_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${TIFF_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : TIFF_CFLAGS=`$PKG_CONFIG --cflags libtiff-4 2>/dev/null` fi fi
-if ${TIFF_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${TIFF_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : TIFF_LIBS=`$PKG_CONFIG --libs libtiff-4 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: libtiff-4 cflags: $TIFF_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libtiff-4 libs: $TIFF_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libtiff-4 cflags: $TIFF_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libtiff-4 libs: $TIFF_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $TIFF_CFLAGS" -for ac_header in tiffio.h -do :
- ac_fn_c_check_header_mongrel "$LINENO" "tiffio.h" "ac_cv_header_tiffio_h" "$ac_includes_default"
-if test "x$ac_cv_header_tiffio_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_TIFFIO_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "tiffio.h" "ac_cv_header_tiffio_h" "$ac_includes_default" +if test "x$ac_cv_header_tiffio_h" = xyes +then :
- printf "%s\n" "#define HAVE_TIFFIO_H 1" >>confdefs.h
fi
-done
if test "$ac_cv_header_tiffio_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -ltiff" >&5
-$as_echo_n "checking for -ltiff... " >&6; } -if ${ac_cv_lib_soname_tiff+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -ltiff" >&5
+printf %s "checking for -ltiff... " >&6; } +if test ${ac_cv_lib_soname_tiff+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-ltiff $TIFF_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16216,45 +18470,43 @@ LIBS="-ltiff $TIFF_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char TIFFClientOpen (); int -main () +main (void) { return TIFFClientOpen (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_tiff=`$ac_cv_path_LDD conftest.exe | grep "tiff" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_tiff=`$OTOOL -L conftest$ac_exeext | grep "libtiff\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libtiff.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_tiff=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libtiff\.$LIBEXT" | sed -e "s/^.*\[\(libtiff\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_tiff:+false} :; then :
if ${ac_cv_lib_soname_tiff:+false} :
+then : ac_cv_lib_soname_tiff=`$LDD conftest$ac_exeext | grep "libtiff\.$LIBEXT" | sed -e "s/^.*(libtiff.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_tiff= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_tiff:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_tiff:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_tiff" >&5
-$as_echo "$ac_cv_lib_soname_tiff" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_tiff" >&5
+printf "%s\n" "$ac_cv_lib_soname_tiff" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBTIFF "$ac_cv_lib_soname_tiff" -_ACEOF +printf "%s\n" "#define SONAME_LIBTIFF "$ac_cv_lib_soname_tiff"" >>confdefs.h
fi @@ -16262,7 +18514,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_tiff" = "x"; then : +if test "x$ac_cv_lib_soname_tiff" = "x" +then : case "x$with_tiff" in x) as_fn_append wine_notices "|libtiff ${notice_platform}development files not found, TIFF won't be supported." ;; xno) ;; @@ -16274,42 +18527,42 @@ fi
if test "x$with_mpg123" != "xno" then
- if ${MPG123_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${MPG123_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : MPG123_CFLAGS=`$PKG_CONFIG --cflags libmpg123 2>/dev/null` fi fi
-if ${MPG123_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${MPG123_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : MPG123_LIBS=`$PKG_CONFIG --libs libmpg123 2>/dev/null` fi fi
MPG123_LIBS=${MPG123_LIBS:-"-lmpg123"} -$as_echo "$as_me:${as_lineno-$LINENO}: libmpg123 cflags: $MPG123_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libmpg123 libs: $MPG123_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libmpg123 cflags: $MPG123_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libmpg123 libs: $MPG123_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $MPG123_CFLAGS" -for ac_header in mpg123.h -do :
- ac_fn_c_check_header_mongrel "$LINENO" "mpg123.h" "ac_cv_header_mpg123_h" "$ac_includes_default"
-if test "x$ac_cv_header_mpg123_h" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_MPG123_H 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "mpg123.h" "ac_cv_header_mpg123_h" "$ac_includes_default" +if test "x$ac_cv_header_mpg123_h" = xyes +then :
- printf "%s\n" "#define HAVE_MPG123_H 1" >>confdefs.h
fi
-done
if test "$ac_cv_header_mpg123_h" = "yes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for mpg123_feed in -lmpg123" >&5
-$as_echo_n "checking for mpg123_feed in -lmpg123... " >&6; } -if ${ac_cv_lib_mpg123_mpg123_feed+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for mpg123_feed in -lmpg123" >&5
+printf %s "checking for mpg123_feed in -lmpg123... " >&6; } +if test ${ac_cv_lib_mpg123_mpg123_feed+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lmpg123 $MPG123_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16318,32 +18571,31 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char mpg123_feed (); int -main () +main (void) { return mpg123_feed (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_mpg123_mpg123_feed=yes -else +else $as_nop ac_cv_lib_mpg123_mpg123_feed=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mpg123_mpg123_feed" >&5 -$as_echo "$ac_cv_lib_mpg123_mpg123_feed" >&6; } -if test "x$ac_cv_lib_mpg123_mpg123_feed" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mpg123_mpg123_feed" >&5 +printf "%s\n" "$ac_cv_lib_mpg123_mpg123_feed" >&6; } +if test "x$ac_cv_lib_mpg123_mpg123_feed" = xyes +then : : -else +else $as_nop MPG123_LIBS="" fi
@@ -16354,7 +18606,8 @@ fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_mpg123_mpg123_feed" != xyes; then : +if test "x$ac_cv_lib_mpg123_mpg123_feed" != xyes +then : case "x$with_mpg123" in x) as_fn_append wine_notices "|libmpg123 ${notice_platform}development files not found (or too old), mp3 codec won't be supported." ;; xno) ;; @@ -16367,11 +18620,12 @@ test "x$ac_cv_lib_mpg123_mpg123_feed" = xyes || enable_mp3dmod=${enable_mp3dmod:
if test "$ac_cv_header_AL_al_h" = "yes" then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lopenal" >&5
-$as_echo_n "checking for -lopenal... " >&6; } -if ${ac_cv_lib_soname_openal+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lopenal" >&5
+printf %s "checking for -lopenal... " >&6; } +if test ${ac_cv_lib_soname_openal+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lopenal $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16380,57 +18634,54 @@ LIBS="-lopenal $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char alGetSource3i (); int -main () +main (void) { return alGetSource3i (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_openal=`$ac_cv_path_LDD conftest.exe | grep "openal" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_openal=`$OTOOL -L conftest$ac_exeext | grep "libopenal\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libopenal.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_openal=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libopenal\.$LIBEXT" | sed -e "s/^.*\[\(libopenal\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_openal:+false} :; then :
if ${ac_cv_lib_soname_openal:+false} :
+then : ac_cv_lib_soname_openal=`$LDD conftest$ac_exeext | grep "libopenal\.$LIBEXT" | sed -e "s/^.*(libopenal.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_openal= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_openal:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_openal:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_openal" >&5
-$as_echo "$ac_cv_lib_soname_openal" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_openal" >&5
+printf "%s\n" "$ac_cv_lib_soname_openal" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBOPENAL "$ac_cv_lib_soname_openal" -_ACEOF +printf "%s\n" "#define SONAME_LIBOPENAL "$ac_cv_lib_soname_openal"" >>confdefs.h
OPENAL_LIBS="-lopenal" ac_cv_lib_openal=yes
-cat >>confdefs.h <<_ACEOF -#define HAVE_OPENAL 1 -_ACEOF +printf "%s\n" "#define HAVE_OPENAL 1" >>confdefs.h
fi fi -if test "x$ac_cv_lib_openal" != xyes; then : +if test "x$ac_cv_lib_openal" != xyes +then : case "x$with_openal" in x) as_fn_append wine_notices "|libopenal ${notice_platform}development files not found (or too old), OpenAL won't be supported." ;; xno) ;; @@ -16481,11 +18732,12 @@ fi
if test "$ac_cv_header_libprocstat_h" = "yes" then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for procstat_open_sysctl in -lprocstat" >&5
-$as_echo_n "checking for procstat_open_sysctl in -lprocstat... " >&6; } -if ${ac_cv_lib_procstat_procstat_open_sysctl+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for procstat_open_sysctl in -lprocstat" >&5
+printf %s "checking for procstat_open_sysctl in -lprocstat... " >&6; } +if test ${ac_cv_lib_procstat_procstat_open_sysctl+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lprocstat $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16494,32 +18746,31 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char procstat_open_sysctl (); int -main () +main (void) { return procstat_open_sysctl (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_procstat_procstat_open_sysctl=yes -else +else $as_nop ac_cv_lib_procstat_procstat_open_sysctl=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_procstat_procstat_open_sysctl" >&5 -$as_echo "$ac_cv_lib_procstat_procstat_open_sysctl" >&6; } -if test "x$ac_cv_lib_procstat_procstat_open_sysctl" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_procstat_procstat_open_sysctl" >&5 +printf "%s\n" "$ac_cv_lib_procstat_procstat_open_sysctl" >&6; } +if test "x$ac_cv_lib_procstat_procstat_open_sysctl" = xyes +then :
-$as_echo "#define HAVE_LIBPROCSTAT 1" >>confdefs.h +printf "%s\n" "#define HAVE_LIBPROCSTAT 1" >>confdefs.h
PROCSTAT_LIBS="-lprocstat"
@@ -16527,11 +18778,12 @@ fi
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lodbc" >&5 -$as_echo_n "checking for -lodbc... " >&6; } -if ${ac_cv_lib_soname_odbc+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lodbc" >&5 +printf %s "checking for -lodbc... " >&6; } +if test ${ac_cv_lib_soname_odbc+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lodbc $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16540,76 +18792,77 @@ LIBS="-lodbc $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char SQLConnect (); int -main () +main (void) { return SQLConnect (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_odbc=`$ac_cv_path_LDD conftest.exe | grep "odbc" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_odbc=`$OTOOL -L conftest$ac_exeext | grep "libodbc\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libodbc.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_odbc=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libodbc\.$LIBEXT" | sed -e "s/^.*\[\(libodbc\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_odbc:+false} :; then :
if ${ac_cv_lib_soname_odbc:+false} :
+then : ac_cv_lib_soname_odbc=`$LDD conftest$ac_exeext | grep "libodbc\.$LIBEXT" | sed -e "s/^.*(libodbc.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_odbc= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_odbc:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; }
cat >>confdefs.h <<_ACEOF
-#define SONAME_LIBODBC "libodbc.$LIBEXT" -_ACEOF +if ${ac_cv_lib_soname_odbc:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
printf "%s\n" "#define SONAME_LIBODBC \"libodbc.$LIBEXT\"" >>confdefs.h
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_odbc" >&5
-$as_echo "$ac_cv_lib_soname_odbc" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_odbc" >&5
+printf "%s\n" "$ac_cv_lib_soname_odbc" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBODBC "$ac_cv_lib_soname_odbc" -_ACEOF +printf "%s\n" "#define SONAME_LIBODBC "$ac_cv_lib_soname_odbc"" >>confdefs.h
fi
if test "x$with_netapi" != "xno" then
- if ${NETAPI_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${NETAPI_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : NETAPI_CFLAGS=`$PKG_CONFIG --cflags netapi 2>/dev/null` fi fi
-if ${NETAPI_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${NETAPI_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : NETAPI_LIBS=`$PKG_CONFIG --libs netapi 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: netapi cflags: $NETAPI_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: netapi libs: $NETAPI_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: netapi cflags: $NETAPI_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: netapi libs: $NETAPI_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $NETAPI_CFLAGS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lnetapi" >&5 -$as_echo_n "checking for -lnetapi... " >&6; } -if ${ac_cv_lib_soname_netapi+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lnetapi" >&5 +printf %s "checking for -lnetapi... " >&6; } +if test ${ac_cv_lib_soname_netapi+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lnetapi $NETAPI_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16618,48 +18871,44 @@ LIBS="-lnetapi $NETAPI_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char libnetapi_init (); int -main () +main (void) { return libnetapi_init (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_netapi=`$ac_cv_path_LDD conftest.exe | grep "netapi" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_netapi=`$OTOOL -L conftest$ac_exeext | grep "libnetapi\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libnetapi.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_netapi=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libnetapi\.$LIBEXT" | sed -e "s/^.*\[\(libnetapi\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_netapi:+false} :; then :
if ${ac_cv_lib_soname_netapi:+false} :
+then : ac_cv_lib_soname_netapi=`$LDD conftest$ac_exeext | grep "libnetapi\.$LIBEXT" | sed -e "s/^.*(libnetapi.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_netapi= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_netapi:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; }
cat >>confdefs.h <<_ACEOF
-#define SONAME_LIBNETAPI "libnetapi.$LIBEXT" -_ACEOF +if ${ac_cv_lib_soname_netapi:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
printf "%s\n" "#define SONAME_LIBNETAPI \"libnetapi.$LIBEXT\"" >>confdefs.h
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_netapi" >&5
-$as_echo "$ac_cv_lib_soname_netapi" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_netapi" >&5
+printf "%s\n" "$ac_cv_lib_soname_netapi" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBNETAPI "$ac_cv_lib_soname_netapi" -_ACEOF +printf "%s\n" "#define SONAME_LIBNETAPI "$ac_cv_lib_soname_netapi"" >>confdefs.h
fi @@ -16675,11 +18924,12 @@ fi
if test "x$with_vulkan" != "xno" then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lvulkan" >&5
-$as_echo_n "checking for -lvulkan... " >&6; } -if ${ac_cv_lib_soname_vulkan+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lvulkan" >&5
+printf %s "checking for -lvulkan... " >&6; } +if test ${ac_cv_lib_soname_vulkan+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lvulkan $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16688,55 +18938,54 @@ LIBS="-lvulkan $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char vkGetInstanceProcAddr (); int -main () +main (void) { return vkGetInstanceProcAddr (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_vulkan=`$ac_cv_path_LDD conftest.exe | grep "vulkan" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_vulkan=`$OTOOL -L conftest$ac_exeext | grep "libvulkan\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libvulkan.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_vulkan=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libvulkan\.$LIBEXT" | sed -e "s/^.*\[\(libvulkan\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_vulkan:+false} :; then :
if ${ac_cv_lib_soname_vulkan:+false} :
+then : ac_cv_lib_soname_vulkan=`$LDD conftest$ac_exeext | grep "libvulkan\.$LIBEXT" | sed -e "s/^.*(libvulkan.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_vulkan= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_vulkan:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_vulkan:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_vulkan" >&5
-$as_echo "$ac_cv_lib_soname_vulkan" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_vulkan" >&5
+printf "%s\n" "$ac_cv_lib_soname_vulkan" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBVULKAN "$ac_cv_lib_soname_vulkan" -_ACEOF +printf "%s\n" "#define SONAME_LIBVULKAN "$ac_cv_lib_soname_vulkan"" >>confdefs.h
fi if test "x$ac_cv_lib_soname_vulkan" = "x" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lMoltenVK" >&5
-$as_echo_n "checking for -lMoltenVK... " >&6; } -if ${ac_cv_lib_soname_MoltenVK+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lMoltenVK" >&5
+printf %s "checking for -lMoltenVK... " >&6; } +if test ${ac_cv_lib_soname_MoltenVK+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lMoltenVK $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16745,51 +18994,50 @@ LIBS="-lMoltenVK $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char vkGetInstanceProcAddr (); int -main () +main (void) { return vkGetInstanceProcAddr (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_MoltenVK=`$ac_cv_path_LDD conftest.exe | grep "MoltenVK" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_MoltenVK=`$OTOOL -L conftest$ac_exeext | grep "libMoltenVK\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libMoltenVK.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_MoltenVK=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libMoltenVK\.$LIBEXT" | sed -e "s/^.*\[\(libMoltenVK\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_MoltenVK:+false} :; then :
if ${ac_cv_lib_soname_MoltenVK:+false} :
+then : ac_cv_lib_soname_MoltenVK=`$LDD conftest$ac_exeext | grep "libMoltenVK\.$LIBEXT" | sed -e "s/^.*(libMoltenVK.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_MoltenVK= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_MoltenVK:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_MoltenVK:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_MoltenVK" >&5
-$as_echo "$ac_cv_lib_soname_MoltenVK" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_MoltenVK" >&5
+printf "%s\n" "$ac_cv_lib_soname_MoltenVK" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBMOLTENVK "$ac_cv_lib_soname_MoltenVK" -_ACEOF +printf "%s\n" "#define SONAME_LIBMOLTENVK "$ac_cv_lib_soname_MoltenVK"" >>confdefs.h
fi fi fi -if test "x$ac_cv_lib_soname_vulkan" = "x" -a "x$ac_cv_lib_soname_MoltenVK" = "x"; then : +if test "x$ac_cv_lib_soname_vulkan" = "x" -a "x$ac_cv_lib_soname_MoltenVK" = "x" +then : case "x$with_vulkan" in x) as_fn_append wine_notices "|libvulkan and libMoltenVK ${notice_platform}development files not found, Vulkan won't be supported." ;; xno) ;; @@ -16801,28 +19049,33 @@ fi
if test "x$with_vkd3d" != "xno" then
- if ${VKD3D_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${VKD3D_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : VKD3D_CFLAGS=`$PKG_CONFIG --cflags libvkd3d 2>/dev/null` fi fi
-if ${VKD3D_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${VKD3D_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : VKD3D_LIBS=`$PKG_CONFIG --libs libvkd3d 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: libvkd3d cflags: $VKD3D_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libvkd3d libs: $VKD3D_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libvkd3d cflags: $VKD3D_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libvkd3d libs: $VKD3D_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $VKD3D_CFLAGS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lvkd3d" >&5 -$as_echo_n "checking for -lvkd3d... " >&6; } -if ${ac_cv_lib_soname_vkd3d+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lvkd3d" >&5 +printf %s "checking for -lvkd3d... " >&6; } +if test ${ac_cv_lib_soname_vkd3d+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lvkd3d $VKD3D_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16831,72 +19084,75 @@ LIBS="-lvkd3d $VKD3D_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char vkd3d_serialize_versioned_root_signature (); int -main () +main (void) { return vkd3d_serialize_versioned_root_signature (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_vkd3d=`$ac_cv_path_LDD conftest.exe | grep "vkd3d" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_vkd3d=`$OTOOL -L conftest$ac_exeext | grep "libvkd3d\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libvkd3d.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_vkd3d=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libvkd3d\.$LIBEXT" | sed -e "s/^.*\[\(libvkd3d\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_vkd3d:+false} :; then :
if ${ac_cv_lib_soname_vkd3d:+false} :
+then : ac_cv_lib_soname_vkd3d=`$LDD conftest$ac_exeext | grep "libvkd3d\.$LIBEXT" | sed -e "s/^.*(libvkd3d.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_vkd3d= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_vkd3d:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_vkd3d:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_vkd3d" >&5
-$as_echo "$ac_cv_lib_soname_vkd3d" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_vkd3d" >&5
+printf "%s\n" "$ac_cv_lib_soname_vkd3d" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBVKD3D "$ac_cv_lib_soname_vkd3d" -_ACEOF +printf "%s\n" "#define SONAME_LIBVKD3D "$ac_cv_lib_soname_vkd3d"" >>confdefs.h
fi CPPFLAGS=$ac_save_CPPFLAGS
- if ${VKD3D_SHADER_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
- if ${VKD3D_SHADER_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : VKD3D_SHADER_CFLAGS=`$PKG_CONFIG --cflags libvkd3d-shader 2>/dev/null` fi fi
-if ${VKD3D_SHADER_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${VKD3D_SHADER_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : VKD3D_SHADER_LIBS=`$PKG_CONFIG --libs libvkd3d-shader 2>/dev/null` fi fi
-$as_echo "$as_me:${as_lineno-$LINENO}: libvkd3d-shader cflags: $VKD3D_SHADER_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: libvkd3d-shader libs: $VKD3D_SHADER_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libvkd3d-shader cflags: $VKD3D_SHADER_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: libvkd3d-shader libs: $VKD3D_SHADER_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $VKD3D_SHADER_CFLAGS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -lvkd3d-shader" >&5 -$as_echo_n "checking for -lvkd3d-shader... " >&6; } -if ${ac_cv_lib_soname_vkd3d_shader+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -lvkd3d-shader" >&5 +printf %s "checking for -lvkd3d-shader... " >&6; } +if test ${ac_cv_lib_soname_vkd3d_shader+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_soname_save_LIBS=$LIBS LIBS="-lvkd3d-shader $VKD3D_SHADER_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -16905,52 +19161,51 @@ LIBS="-lvkd3d-shader $VKD3D_SHADER_LIBS $LIBS" /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char vkd3d_shader_compile (); int -main () +main (void) { return vkd3d_shader_compile (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : case "$LIBEXT" in dll) ac_cv_lib_soname_vkd3d_shader=`$ac_cv_path_LDD conftest.exe | grep "vkd3d-shader" | sed -e "s/dll.*/dll/"';2,$d'` ;; dylib) ac_cv_lib_soname_vkd3d_shader=`$OTOOL -L conftest$ac_exeext | grep "libvkd3d-shader\.[0-9A-Za-z.]*dylib" | sed -e "s/^.*/(libvkd3d-shader.[0-9A-Za-z.]*dylib).*$/\1/"';2,$d'` ;; *) ac_cv_lib_soname_vkd3d_shader=`$READELF -d conftest$ac_exeext | grep "NEEDED.*libvkd3d-shader\.$LIBEXT" | sed -e "s/^.*\[\(libvkd3d-shader\.$LIBEXT[^ ]*\)\].*$/\1/"';2,$d'`
if ${ac_cv_lib_soname_vkd3d_shader:+false} :; then :
if ${ac_cv_lib_soname_vkd3d_shader:+false} :
+then : ac_cv_lib_soname_vkd3d_shader=`$LDD conftest$ac_exeext | grep "libvkd3d-shader\.$LIBEXT" | sed -e "s/^.*(libvkd3d-shader.$LIBEXT[^ ]*).*$/\1/"';2,$d'` fi ;; esac -else +else $as_nop ac_cv_lib_soname_vkd3d_shader= fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_soname_save_LIBS fi -if ${ac_cv_lib_soname_vkd3d_shader:+false} :; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
-$as_echo "not found" >&6; } +if ${ac_cv_lib_soname_vkd3d_shader:+false} : +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+printf "%s\n" "not found" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_vkd3d_shader" >&5
-$as_echo "$ac_cv_lib_soname_vkd3d_shader" >&6; } +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_soname_vkd3d_shader" >&5
+printf "%s\n" "$ac_cv_lib_soname_vkd3d_shader" >&6; }
-cat >>confdefs.h <<_ACEOF -#define SONAME_LIBVKD3D_SHADER "$ac_cv_lib_soname_vkd3d_shader" -_ACEOF +printf "%s\n" "#define SONAME_LIBVKD3D_SHADER "$ac_cv_lib_soname_vkd3d_shader"" >>confdefs.h
fi CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$ac_cv_lib_soname_vkd3d" = "x"; then : +if test "x$ac_cv_lib_soname_vkd3d" = "x" +then : case "x$with_vkd3d" in x) as_fn_append wine_notices "|vkd3d ${notice_platform}development files not found (or too old), Direct3D 12 won't be supported." ;; xno) ;; @@ -16969,617 +19224,686 @@ then EXTRACFLAGS="-Wall -pipe"
saved_CFLAGS=$CFLAGS
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror=unknown-warning-option" >&5
-$as_echo_n "checking whether the compiler supports -Werror=unknown-warning-option... " >&6; } -if ${ac_cv_cflags__Werror_unknown_warning_option+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror=unknown-warning-option" >&5
+printf %s "checking whether the compiler supports -Werror=unknown-warning-option... " >&6; } +if test ${ac_cv_cflags__Werror_unknown_warning_option+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Werror=unknown-warning-option" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Werror_unknown_warning_option=yes -else +else $as_nop ac_cv_cflags__Werror_unknown_warning_option=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror_unknown_warning_option" >&5 -$as_echo "$ac_cv_cflags__Werror_unknown_warning_option" >&6; } -if test "x$ac_cv_cflags__Werror_unknown_warning_option" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror_unknown_warning_option" >&5 +printf "%s\n" "$ac_cv_cflags__Werror_unknown_warning_option" >&6; } +if test "x$ac_cv_cflags__Werror_unknown_warning_option" = xyes +then : CFLAGS="$CFLAGS -Werror=unknown-warning-option" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror=unused-command-line-argument" >&5
-$as_echo_n "checking whether the compiler supports -Werror=unused-command-line-argument... " >&6; } -if ${ac_cv_cflags__Werror_unused_command_line_argument+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror=unused-command-line-argument" >&5
+printf %s "checking whether the compiler supports -Werror=unused-command-line-argument... " >&6; } +if test ${ac_cv_cflags__Werror_unused_command_line_argument+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Werror=unused-command-line-argument" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Werror_unused_command_line_argument=yes -else +else $as_nop ac_cv_cflags__Werror_unused_command_line_argument=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror_unused_command_line_argument" >&5 -$as_echo "$ac_cv_cflags__Werror_unused_command_line_argument" >&6; } -if test "x$ac_cv_cflags__Werror_unused_command_line_argument" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror_unused_command_line_argument" >&5 +printf "%s\n" "$ac_cv_cflags__Werror_unused_command_line_argument" >&6; } +if test "x$ac_cv_cflags__Werror_unused_command_line_argument" = xyes +then : CFLAGS="$CFLAGS -Werror=unused-command-line-argument" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror=ignored-optimization-argument" >&5
-$as_echo_n "checking whether the compiler supports -Werror=ignored-optimization-argument... " >&6; } -if ${ac_cv_cflags__Werror_ignored_optimization_argument+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror=ignored-optimization-argument" >&5
+printf %s "checking whether the compiler supports -Werror=ignored-optimization-argument... " >&6; } +if test ${ac_cv_cflags__Werror_ignored_optimization_argument+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Werror=ignored-optimization-argument" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Werror_ignored_optimization_argument=yes -else +else $as_nop ac_cv_cflags__Werror_ignored_optimization_argument=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror_ignored_optimization_argument" >&5 -$as_echo "$ac_cv_cflags__Werror_ignored_optimization_argument" >&6; } -if test "x$ac_cv_cflags__Werror_ignored_optimization_argument" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror_ignored_optimization_argument" >&5 +printf "%s\n" "$ac_cv_cflags__Werror_ignored_optimization_argument" >&6; } +if test "x$ac_cv_cflags__Werror_ignored_optimization_argument" = xyes +then : CFLAGS="$CFLAGS -Werror=ignored-optimization-argument" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fcf-protection=none" >&5
-$as_echo_n "checking whether the compiler supports -fcf-protection=none... " >&6; } -if ${ac_cv_cflags__fcf_protection_none+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fcf-protection=none" >&5
+printf %s "checking whether the compiler supports -fcf-protection=none... " >&6; } +if test ${ac_cv_cflags__fcf_protection_none+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fcf-protection=none" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fcf_protection_none=yes -else +else $as_nop ac_cv_cflags__fcf_protection_none=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fcf_protection_none" >&5 -$as_echo "$ac_cv_cflags__fcf_protection_none" >&6; } -if test "x$ac_cv_cflags__fcf_protection_none" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fcf_protection_none" >&5 +printf "%s\n" "$ac_cv_cflags__fcf_protection_none" >&6; } +if test "x$ac_cv_cflags__fcf_protection_none" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -fcf-protection=none" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-stack-protector" >&5
-$as_echo_n "checking whether the compiler supports -fno-stack-protector... " >&6; } -if ${ac_cv_cflags__fno_stack_protector+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-stack-protector" >&5
+printf %s "checking whether the compiler supports -fno-stack-protector... " >&6; } +if test ${ac_cv_cflags__fno_stack_protector+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fno-stack-protector" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fno_stack_protector=yes -else +else $as_nop ac_cv_cflags__fno_stack_protector=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_stack_protector" >&5 -$as_echo "$ac_cv_cflags__fno_stack_protector" >&6; } -if test "x$ac_cv_cflags__fno_stack_protector" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_stack_protector" >&5 +printf "%s\n" "$ac_cv_cflags__fno_stack_protector" >&6; } +if test "x$ac_cv_cflags__fno_stack_protector" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -fno-stack-protector" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-strict-aliasing" >&5
-$as_echo_n "checking whether the compiler supports -fno-strict-aliasing... " >&6; } -if ${ac_cv_cflags__fno_strict_aliasing+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-strict-aliasing" >&5
+printf %s "checking whether the compiler supports -fno-strict-aliasing... " >&6; } +if test ${ac_cv_cflags__fno_strict_aliasing+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fno-strict-aliasing" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fno_strict_aliasing=yes -else +else $as_nop ac_cv_cflags__fno_strict_aliasing=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_strict_aliasing" >&5 -$as_echo "$ac_cv_cflags__fno_strict_aliasing" >&6; } -if test "x$ac_cv_cflags__fno_strict_aliasing" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_strict_aliasing" >&5 +printf "%s\n" "$ac_cv_cflags__fno_strict_aliasing" >&6; } +if test "x$ac_cv_cflags__fno_strict_aliasing" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -fno-strict-aliasing" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wdeclaration-after-statement" >&5
-$as_echo_n "checking whether the compiler supports -Wdeclaration-after-statement... " >&6; } -if ${ac_cv_cflags__Wdeclaration_after_statement+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wdeclaration-after-statement" >&5
+printf %s "checking whether the compiler supports -Wdeclaration-after-statement... " >&6; } +if test ${ac_cv_cflags__Wdeclaration_after_statement+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wdeclaration-after-statement" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wdeclaration_after_statement=yes -else +else $as_nop ac_cv_cflags__Wdeclaration_after_statement=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wdeclaration_after_statement" >&5 -$as_echo "$ac_cv_cflags__Wdeclaration_after_statement" >&6; } -if test "x$ac_cv_cflags__Wdeclaration_after_statement" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wdeclaration_after_statement" >&5 +printf "%s\n" "$ac_cv_cflags__Wdeclaration_after_statement" >&6; } +if test "x$ac_cv_cflags__Wdeclaration_after_statement" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wdeclaration-after-statement" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wempty-body" >&5
-$as_echo_n "checking whether the compiler supports -Wempty-body... " >&6; } -if ${ac_cv_cflags__Wempty_body+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wempty-body" >&5
+printf %s "checking whether the compiler supports -Wempty-body... " >&6; } +if test ${ac_cv_cflags__Wempty_body+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wempty-body" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wempty_body=yes -else +else $as_nop ac_cv_cflags__Wempty_body=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wempty_body" >&5 -$as_echo "$ac_cv_cflags__Wempty_body" >&6; } -if test "x$ac_cv_cflags__Wempty_body" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wempty_body" >&5 +printf "%s\n" "$ac_cv_cflags__Wempty_body" >&6; } +if test "x$ac_cv_cflags__Wempty_body" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wempty-body" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wignored-qualifiers" >&5
-$as_echo_n "checking whether the compiler supports -Wignored-qualifiers... " >&6; } -if ${ac_cv_cflags__Wignored_qualifiers+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wignored-qualifiers" >&5
+printf %s "checking whether the compiler supports -Wignored-qualifiers... " >&6; } +if test ${ac_cv_cflags__Wignored_qualifiers+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wignored-qualifiers" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wignored_qualifiers=yes -else +else $as_nop ac_cv_cflags__Wignored_qualifiers=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wignored_qualifiers" >&5 -$as_echo "$ac_cv_cflags__Wignored_qualifiers" >&6; } -if test "x$ac_cv_cflags__Wignored_qualifiers" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wignored_qualifiers" >&5 +printf "%s\n" "$ac_cv_cflags__Wignored_qualifiers" >&6; } +if test "x$ac_cv_cflags__Wignored_qualifiers" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wignored-qualifiers" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Winit-self" >&5
-$as_echo_n "checking whether the compiler supports -Winit-self... " >&6; } -if ${ac_cv_cflags__Winit_self+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Winit-self" >&5
+printf %s "checking whether the compiler supports -Winit-self... " >&6; } +if test ${ac_cv_cflags__Winit_self+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Winit-self" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Winit_self=yes -else +else $as_nop ac_cv_cflags__Winit_self=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Winit_self" >&5 -$as_echo "$ac_cv_cflags__Winit_self" >&6; } -if test "x$ac_cv_cflags__Winit_self" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Winit_self" >&5 +printf "%s\n" "$ac_cv_cflags__Winit_self" >&6; } +if test "x$ac_cv_cflags__Winit_self" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Winit-self" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wpacked-not-aligned" >&5
-$as_echo_n "checking whether the compiler supports -Wpacked-not-aligned... " >&6; } -if ${ac_cv_cflags__Wpacked_not_aligned+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wpacked-not-aligned" >&5
+printf %s "checking whether the compiler supports -Wpacked-not-aligned... " >&6; } +if test ${ac_cv_cflags__Wpacked_not_aligned+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wpacked-not-aligned" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wpacked_not_aligned=yes -else +else $as_nop ac_cv_cflags__Wpacked_not_aligned=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wpacked_not_aligned" >&5 -$as_echo "$ac_cv_cflags__Wpacked_not_aligned" >&6; } -if test "x$ac_cv_cflags__Wpacked_not_aligned" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wpacked_not_aligned" >&5 +printf "%s\n" "$ac_cv_cflags__Wpacked_not_aligned" >&6; } +if test "x$ac_cv_cflags__Wpacked_not_aligned" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wno-packed-not-aligned" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wpragma-pack" >&5
-$as_echo_n "checking whether the compiler supports -Wpragma-pack... " >&6; } -if ${ac_cv_cflags__Wpragma_pack+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wpragma-pack" >&5
+printf %s "checking whether the compiler supports -Wpragma-pack... " >&6; } +if test ${ac_cv_cflags__Wpragma_pack+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wpragma-pack" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wpragma_pack=yes -else +else $as_nop ac_cv_cflags__Wpragma_pack=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wpragma_pack" >&5 -$as_echo "$ac_cv_cflags__Wpragma_pack" >&6; } -if test "x$ac_cv_cflags__Wpragma_pack" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wpragma_pack" >&5 +printf "%s\n" "$ac_cv_cflags__Wpragma_pack" >&6; } +if test "x$ac_cv_cflags__Wpragma_pack" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wno-pragma-pack" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wshift-overflow=2" >&5
-$as_echo_n "checking whether the compiler supports -Wshift-overflow=2... " >&6; } -if ${ac_cv_cflags__Wshift_overflow_2+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wshift-overflow=2" >&5
+printf %s "checking whether the compiler supports -Wshift-overflow=2... " >&6; } +if test ${ac_cv_cflags__Wshift_overflow_2+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wshift-overflow=2" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wshift_overflow_2=yes -else +else $as_nop ac_cv_cflags__Wshift_overflow_2=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wshift_overflow_2" >&5 -$as_echo "$ac_cv_cflags__Wshift_overflow_2" >&6; } -if test "x$ac_cv_cflags__Wshift_overflow_2" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wshift_overflow_2" >&5 +printf "%s\n" "$ac_cv_cflags__Wshift_overflow_2" >&6; } +if test "x$ac_cv_cflags__Wshift_overflow_2" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wshift-overflow=2" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wstrict-prototypes" >&5
-$as_echo_n "checking whether the compiler supports -Wstrict-prototypes... " >&6; } -if ${ac_cv_cflags__Wstrict_prototypes+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wstrict-prototypes" >&5
+printf %s "checking whether the compiler supports -Wstrict-prototypes... " >&6; } +if test ${ac_cv_cflags__Wstrict_prototypes+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wstrict-prototypes" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wstrict_prototypes=yes -else +else $as_nop ac_cv_cflags__Wstrict_prototypes=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wstrict_prototypes" >&5 -$as_echo "$ac_cv_cflags__Wstrict_prototypes" >&6; } -if test "x$ac_cv_cflags__Wstrict_prototypes" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wstrict_prototypes" >&5 +printf "%s\n" "$ac_cv_cflags__Wstrict_prototypes" >&6; } +if test "x$ac_cv_cflags__Wstrict_prototypes" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wstrict-prototypes" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wtype-limits" >&5
-$as_echo_n "checking whether the compiler supports -Wtype-limits... " >&6; } -if ${ac_cv_cflags__Wtype_limits+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wtype-limits" >&5
+printf %s "checking whether the compiler supports -Wtype-limits... " >&6; } +if test ${ac_cv_cflags__Wtype_limits+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wtype-limits" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wtype_limits=yes -else +else $as_nop ac_cv_cflags__Wtype_limits=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wtype_limits" >&5 -$as_echo "$ac_cv_cflags__Wtype_limits" >&6; } -if test "x$ac_cv_cflags__Wtype_limits" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wtype_limits" >&5 +printf "%s\n" "$ac_cv_cflags__Wtype_limits" >&6; } +if test "x$ac_cv_cflags__Wtype_limits" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wtype-limits" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wunused-but-set-parameter" >&5
-$as_echo_n "checking whether the compiler supports -Wunused-but-set-parameter... " >&6; } -if ${ac_cv_cflags__Wunused_but_set_parameter+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wunused-but-set-parameter" >&5
+printf %s "checking whether the compiler supports -Wunused-but-set-parameter... " >&6; } +if test ${ac_cv_cflags__Wunused_but_set_parameter+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wunused-but-set-parameter" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wunused_but_set_parameter=yes -else +else $as_nop ac_cv_cflags__Wunused_but_set_parameter=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wunused_but_set_parameter" >&5 -$as_echo "$ac_cv_cflags__Wunused_but_set_parameter" >&6; } -if test "x$ac_cv_cflags__Wunused_but_set_parameter" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wunused_but_set_parameter" >&5 +printf "%s\n" "$ac_cv_cflags__Wunused_but_set_parameter" >&6; } +if test "x$ac_cv_cflags__Wunused_but_set_parameter" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wunused-but-set-parameter" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wvla" >&5
-$as_echo_n "checking whether the compiler supports -Wvla... " >&6; } -if ${ac_cv_cflags__Wvla+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wvla" >&5
+printf %s "checking whether the compiler supports -Wvla... " >&6; } +if test ${ac_cv_cflags__Wvla+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wvla" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wvla=yes -else +else $as_nop ac_cv_cflags__Wvla=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wvla" >&5 -$as_echo "$ac_cv_cflags__Wvla" >&6; } -if test "x$ac_cv_cflags__Wvla" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wvla" >&5 +printf "%s\n" "$ac_cv_cflags__Wvla" >&6; } +if test "x$ac_cv_cflags__Wvla" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wvla" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wwrite-strings" >&5
-$as_echo_n "checking whether the compiler supports -Wwrite-strings... " >&6; } -if ${ac_cv_cflags__Wwrite_strings+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wwrite-strings" >&5
+printf %s "checking whether the compiler supports -Wwrite-strings... " >&6; } +if test ${ac_cv_cflags__Wwrite_strings+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wwrite-strings" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wwrite_strings=yes -else +else $as_nop ac_cv_cflags__Wwrite_strings=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wwrite_strings" >&5 -$as_echo "$ac_cv_cflags__Wwrite_strings" >&6; } -if test "x$ac_cv_cflags__Wwrite_strings" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wwrite_strings" >&5 +printf "%s\n" "$ac_cv_cflags__Wwrite_strings" >&6; } +if test "x$ac_cv_cflags__Wwrite_strings" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wwrite-strings" fi
if test -z "$CROSSTARGET" then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fexcess-precision=standard" >&5
-$as_echo_n "checking whether the compiler supports -fexcess-precision=standard... " >&6; } -if ${ac_cv_cflags__fexcess_precision_standard+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fexcess-precision=standard" >&5
+printf %s "checking whether the compiler supports -fexcess-precision=standard... " >&6; } +if test ${ac_cv_cflags__fexcess_precision_standard+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fexcess-precision=standard" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fexcess_precision_standard=yes -else +else $as_nop ac_cv_cflags__fexcess_precision_standard=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fexcess_precision_standard" >&5 -$as_echo "$ac_cv_cflags__fexcess_precision_standard" >&6; } -if test "x$ac_cv_cflags__fexcess_precision_standard" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fexcess_precision_standard" >&5 +printf "%s\n" "$ac_cv_cflags__fexcess_precision_standard" >&6; } +if test "x$ac_cv_cflags__fexcess_precision_standard" = xyes +then : EXCESS_PRECISION_CFLAGS="-fexcess-precision=standard"
fi fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wpointer-arith" >&5
-$as_echo_n "checking whether the compiler supports -Wpointer-arith... " >&6; } -if ${ac_cv_cflags__Wpointer_arith+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wpointer-arith" >&5
+printf %s "checking whether the compiler supports -Wpointer-arith... " >&6; } +if test ${ac_cv_cflags__Wpointer_arith+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wpointer-arith" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wpointer_arith=yes -else +else $as_nop ac_cv_cflags__Wpointer_arith=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wpointer_arith" >&5 -$as_echo "$ac_cv_cflags__Wpointer_arith" >&6; } -if test "x$ac_cv_cflags__Wpointer_arith" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wpointer_arith" >&5 +printf "%s\n" "$ac_cv_cflags__Wpointer_arith" >&6; } +if test "x$ac_cv_cflags__Wpointer_arith" = xyes +then : saved_string_h_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -Wpointer-arith -Werror"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for broken string.h that generates warnings with -Wpointer-arith" >&5
-$as_echo_n "checking for broken string.h that generates warnings with -Wpointer-arith... " >&6; } -if ${ac_cv_c_string_h_warnings+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for broken string.h that generates warnings with -Wpointer-arith" >&5
+printf %s "checking for broken string.h that generates warnings with -Wpointer-arith... " >&6; } +if test ${ac_cv_c_string_h_warnings+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <string.h> int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_c_string_h_warnings=no -else +else $as_nop ac_cv_c_string_h_warnings=yes fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_string_h_warnings" >&5 -$as_echo "$ac_cv_c_string_h_warnings" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_string_h_warnings" >&5 +printf "%s\n" "$ac_cv_c_string_h_warnings" >&6; } test "$ac_cv_c_string_h_warnings" = yes || EXTRACFLAGS="$EXTRACFLAGS -Wpointer-arith" CFLAGS=$saved_string_h_CFLAGS fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wlogical-op" >&5
-$as_echo_n "checking whether the compiler supports -Wlogical-op... " >&6; } -if ${ac_cv_cflags__Wlogical_op+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wlogical-op" >&5
+printf %s "checking whether the compiler supports -Wlogical-op... " >&6; } +if test ${ac_cv_cflags__Wlogical_op+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wlogical-op" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wlogical_op=yes -else +else $as_nop ac_cv_cflags__Wlogical_op=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wlogical_op" >&5 -$as_echo "$ac_cv_cflags__Wlogical_op" >&6; } -if test "x$ac_cv_cflags__Wlogical_op" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wlogical_op" >&5 +printf "%s\n" "$ac_cv_cflags__Wlogical_op" >&6; } +if test "x$ac_cv_cflags__Wlogical_op" = xyes +then : saved_string_h_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -Wlogical-op -Werror"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for broken string.h that generates warnings with -Wlogical-op" >&5
-$as_echo_n "checking for broken string.h that generates warnings with -Wlogical-op... " >&6; } -if ${ac_cv_c_logicalop_noisy+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for broken string.h that generates warnings with -Wlogical-op" >&5
+printf %s "checking for broken string.h that generates warnings with -Wlogical-op... " >&6; } +if test ${ac_cv_c_logicalop_noisy+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <string.h> char*f(const char *h,char n) {return strchr(h,n);} int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_c_logicalop_noisy=no -else +else $as_nop ac_cv_c_logicalop_noisy=yes fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_logicalop_noisy" >&5 -$as_echo "$ac_cv_c_logicalop_noisy" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_logicalop_noisy" >&5 +printf "%s\n" "$ac_cv_c_logicalop_noisy" >&6; } CFLAGS=$saved_string_h_CFLAGS test "$ac_cv_c_logicalop_noisy" = yes || EXTRACFLAGS="$EXTRACFLAGS -Wlogical-op" fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for flags needed for 64-bit compare-and-swap support" >&5
-$as_echo_n "checking for flags needed for 64-bit compare-and-swap support... " >&6; } -if ${wine_cv_64bit_compare_swap+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for flags needed for 64-bit compare-and-swap support" >&5
+printf %s "checking for flags needed for 64-bit compare-and-swap support... " >&6; } +if test ${wine_cv_64bit_compare_swap+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 #error no #endif int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : wine_cv_64bit_compare_swap="none needed" -else +else $as_nop case $host_cpu in *i[3456]86*) wine_cv_64bit_compare_swap="-march=i586" ;; *arm*) wine_cv_64bit_compare_swap="-march=armv7-a" ;; @@ -17594,26 +19918,27 @@ else #error no #endif int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then :
-else +else $as_nop wine_cv_64bit_compare_swap="unknown" fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext CFLAGS=$saved_CFLAGS fi fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_64bit_compare_swap" >&5 -$as_echo "$wine_cv_64bit_compare_swap" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_64bit_compare_swap" >&5 +printf "%s\n" "$wine_cv_64bit_compare_swap" >&6; } case "$wine_cv_64bit_compare_swap" in unknown) as_fn_error $? "gcc doesn't support 64-bit compare-and-swap on this platform" "$LINENO" 5 ;; "none needed") ;; @@ -17622,54 +19947,60 @@ $as_echo "$wine_cv_64bit_compare_swap" >&6; }
for ac_flag in $CFLAGS; do case $ac_flag in
-g) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -gdwarf-2" >&5
-$as_echo_n "checking whether the compiler supports -gdwarf-2... " >&6; } -if ${ac_cv_cflags__gdwarf_2+:} false; then :
- $as_echo_n "(cached) " >&6
-else
-g) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -gdwarf-2" >&5
+printf %s "checking whether the compiler supports -gdwarf-2... " >&6; } +if test ${ac_cv_cflags__gdwarf_2+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -gdwarf-2" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__gdwarf_2=yes -else +else $as_nop ac_cv_cflags__gdwarf_2=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__gdwarf_2" >&5 -$as_echo "$ac_cv_cflags__gdwarf_2" >&6; } -if test "x$ac_cv_cflags__gdwarf_2" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__gdwarf_2" >&5 +printf "%s\n" "$ac_cv_cflags__gdwarf_2" >&6; } +if test "x$ac_cv_cflags__gdwarf_2" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -gdwarf-2" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -gstrict-dwarf" >&5
-$as_echo_n "checking whether the compiler supports -gstrict-dwarf... " >&6; } -if ${ac_cv_cflags__gstrict_dwarf+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -gstrict-dwarf" >&5
+printf %s "checking whether the compiler supports -gstrict-dwarf... " >&6; } +if test ${ac_cv_cflags__gstrict_dwarf+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -gstrict-dwarf" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__gstrict_dwarf=yes -else +else $as_nop ac_cv_cflags__gstrict_dwarf=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__gstrict_dwarf" >&5 -$as_echo "$ac_cv_cflags__gstrict_dwarf" >&6; } -if test "x$ac_cv_cflags__gstrict_dwarf" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__gstrict_dwarf" >&5 +printf "%s\n" "$ac_cv_cflags__gstrict_dwarf" >&6; } +if test "x$ac_cv_cflags__gstrict_dwarf" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -gstrict-dwarf" fi ;; esac @@ -17678,160 +20009,178 @@ fi ;; MSVCRTFLAGS=""
case $host_os in
- mingw32*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-delayload,autoconftest.dll" >&5
-$as_echo_n "checking whether the compiler supports -Wl,-delayload,autoconftest.dll... " >&6; } -if ${ac_cv_cflags__Wl__delayload_autoconftest_dll+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- mingw32*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,-delayload,autoconftest.dll" >&5
+printf %s "checking whether the compiler supports -Wl,-delayload,autoconftest.dll... " >&6; } +if test ${ac_cv_cflags__Wl__delayload_autoconftest_dll+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,-delayload,autoconftest.dll" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl__delayload_autoconftest_dll=yes -else +else $as_nop ac_cv_cflags__Wl__delayload_autoconftest_dll=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__delayload_autoconftest_dll" >&5 -$as_echo "$ac_cv_cflags__Wl__delayload_autoconftest_dll" >&6; } -if test "x$ac_cv_cflags__Wl__delayload_autoconftest_dll" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl__delayload_autoconftest_dll" >&5 +printf "%s\n" "$ac_cv_cflags__Wl__delayload_autoconftest_dll" >&6; } +if test "x$ac_cv_cflags__Wl__delayload_autoconftest_dll" = xyes +then : DELAYLOADFLAG="-Wl,-delayload,"
fi ;;
- *) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-builtin" >&5
-$as_echo_n "checking whether the compiler supports -fno-builtin... " >&6; } -if ${ac_cv_cflags__fno_builtin+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- *) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-builtin" >&5
+printf %s "checking whether the compiler supports -fno-builtin... " >&6; } +if test ${ac_cv_cflags__fno_builtin+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fno-builtin" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fno_builtin=yes -else +else $as_nop ac_cv_cflags__fno_builtin=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_builtin" >&5 -$as_echo "$ac_cv_cflags__fno_builtin" >&6; } -if test "x$ac_cv_cflags__fno_builtin" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_builtin" >&5 +printf "%s\n" "$ac_cv_cflags__fno_builtin" >&6; } +if test "x$ac_cv_cflags__fno_builtin" = xyes +then : MSVCRTFLAGS="$MSVCRTFLAGS -fno-builtin" fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fshort-wchar" >&5
-$as_echo_n "checking whether the compiler supports -fshort-wchar... " >&6; } -if ${ac_cv_cflags__fshort_wchar+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fshort-wchar" >&5
+printf %s "checking whether the compiler supports -fshort-wchar... " >&6; } +if test ${ac_cv_cflags__fshort_wchar+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fshort-wchar" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fshort_wchar=yes -else +else $as_nop ac_cv_cflags__fshort_wchar=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fshort_wchar" >&5 -$as_echo "$ac_cv_cflags__fshort_wchar" >&6; } -if test "x$ac_cv_cflags__fshort_wchar" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fshort_wchar" >&5 +printf "%s\n" "$ac_cv_cflags__fshort_wchar" >&6; } +if test "x$ac_cv_cflags__fshort_wchar" = xyes +then : MSVCRTFLAGS="$MSVCRTFLAGS -fshort-wchar" fi ;; esac
case $host_cpu in
*i[3456789]86*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-omit-frame-pointer" >&5
-$as_echo_n "checking whether the compiler supports -fno-omit-frame-pointer... " >&6; } -if ${ac_cv_cflags__fno_omit_frame_pointer+:} false; then :
- $as_echo_n "(cached) " >&6
-else
*i[3456789]86*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -fno-omit-frame-pointer" >&5
+printf %s "checking whether the compiler supports -fno-omit-frame-pointer... " >&6; } +if test ${ac_cv_cflags__fno_omit_frame_pointer+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -fno-omit-frame-pointer" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__fno_omit_frame_pointer=yes -else +else $as_nop ac_cv_cflags__fno_omit_frame_pointer=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_omit_frame_pointer" >&5 -$as_echo "$ac_cv_cflags__fno_omit_frame_pointer" >&6; } -if test "x$ac_cv_cflags__fno_omit_frame_pointer" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__fno_omit_frame_pointer" >&5 +printf "%s\n" "$ac_cv_cflags__fno_omit_frame_pointer" >&6; } +if test "x$ac_cv_cflags__fno_omit_frame_pointer" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -fno-omit-frame-pointer" fi ;; *x86_64*) case $host_os in
cygwin*|mingw32*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wno-format" >&5
-$as_echo_n "checking whether the compiler supports -Wno-format... " >&6; } -if ${ac_cv_cflags__Wno_format+:} false; then :
- $as_echo_n "(cached) " >&6
-else
cygwin*|mingw32*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wno-format" >&5
+printf %s "checking whether the compiler supports -Wno-format... " >&6; } +if test ${ac_cv_cflags__Wno_format+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wno-format" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wno_format=yes -else +else $as_nop ac_cv_cflags__Wno_format=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wno_format" >&5 -$as_echo "$ac_cv_cflags__Wno_format" >&6; } -if test "x$ac_cv_cflags__Wno_format" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wno_format" >&5 +printf "%s\n" "$ac_cv_cflags__Wno_format" >&6; } +if test "x$ac_cv_cflags__Wno_format" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Wno-format" fi ;;
*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -mabi=ms" >&5
-$as_echo_n "checking whether the compiler supports -mabi=ms... " >&6; } -if ${ac_cv_cflags__mabi_ms+:} false; then :
- $as_echo_n "(cached) " >&6
-else
*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -mabi=ms" >&5
+printf %s "checking whether the compiler supports -mabi=ms... " >&6; } +if test ${ac_cv_cflags__mabi_ms+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -mabi=ms" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__mabi_ms=yes -else +else $as_nop ac_cv_cflags__mabi_ms=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__mabi_ms" >&5 -$as_echo "$ac_cv_cflags__mabi_ms" >&6; } -if test "x$ac_cv_cflags__mabi_ms" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__mabi_ms" >&5 +printf "%s\n" "$ac_cv_cflags__mabi_ms" >&6; } +if test "x$ac_cv_cflags__mabi_ms" = xyes +then : MSVCRTFLAGS="$MSVCRTFLAGS -mabi=ms" fi ;; esac ;; @@ -17841,57 +20190,63 @@ fi ;;
if test "x$enable_werror" = "xyes"
then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror" >&5
-$as_echo_n "checking whether the compiler supports -Werror... " >&6; } -if ${ac_cv_cflags__Werror+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Werror" >&5
+printf %s "checking whether the compiler supports -Werror... " >&6; } +if test ${ac_cv_cflags__Werror+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Werror" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Werror=yes -else +else $as_nop ac_cv_cflags__Werror=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror" >&5 -$as_echo "$ac_cv_cflags__Werror" >&6; } -if test "x$ac_cv_cflags__Werror" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Werror" >&5 +printf "%s\n" "$ac_cv_cflags__Werror" >&6; } +if test "x$ac_cv_cflags__Werror" = xyes +then : EXTRACFLAGS="$EXTRACFLAGS -Werror" fi fi if test "x$enable_build_id" = "xyes" then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--build-id" >&5
-$as_echo_n "checking whether the compiler supports -Wl,--build-id... " >&6; } -if ${ac_cv_cflags__Wl___build_id+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports -Wl,--build-id" >&5
+printf %s "checking whether the compiler supports -Wl,--build-id... " >&6; } +if test ${ac_cv_cflags__Wl___build_id+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_wine_try_cflags_saved=$CFLAGS CFLAGS="$CFLAGS -Wl,--build-id" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int argc, char **argv) { return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_cflags__Wl___build_id=yes -else +else $as_nop ac_cv_cflags__Wl___build_id=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext CFLAGS=$ac_wine_try_cflags_saved fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___build_id" >&5 -$as_echo "$ac_cv_cflags__Wl___build_id" >&6; } -if test "x$ac_cv_cflags__Wl___build_id" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cflags__Wl___build_id" >&5 +printf "%s\n" "$ac_cv_cflags__Wl___build_id" >&6; } +if test "x$ac_cv_cflags__Wl___build_id" = xyes +then : CFLAGS="$CFLAGS -Wl,--build-id" LDFLAGS="$LDFLAGS -Wl,--build-id" fi @@ -17899,16 +20254,17 @@ fi fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the need to disable Fortify" >&5 -$as_echo_n "checking for the need to disable Fortify... " >&6; } -if ${ac_cv_c_fortify_enabled+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for the need to disable Fortify" >&5 +printf %s "checking for the need to disable Fortify... " >&6; } +if test ${ac_cv_c_fortify_enabled+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <string.h> int -main () +main (void) { #if (defined(__USE_FORTIFY_LEVEL) && __USE_FORTIFY_LEVEL > 0) || (defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0) #error Fortify enabled @@ -17917,132 +20273,299 @@ main () return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_c_fortify_enabled=no -else +else $as_nop ac_cv_c_fortify_enabled=yes fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_fortify_enabled" >&5 -$as_echo "$ac_cv_c_fortify_enabled" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_fortify_enabled" >&5 +printf "%s\n" "$ac_cv_c_fortify_enabled" >&6; } if test "$ac_cv_c_fortify_enabled" = yes then CFLAGS="$CFLAGS -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0" fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CFI directives are supported in assembly code" >&5 -$as_echo_n "checking whether CFI directives are supported in assembly code... " >&6; } -if ${ac_cv_c_cfi_support+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether CFI directives are supported in assembly code" >&5 +printf %s "checking whether CFI directives are supported in assembly code... " >&6; } +if test ${ac_cv_c_cfi_support+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ asm(".text\nac_test:\t.cfi_startproc\n\t.long 0\n\t.cfi_endproc"); int -main () +main (void) {
; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_c_cfi_support="yes" -else +else $as_nop ac_cv_c_cfi_support="no" fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_cfi_support" >&5 +printf "%s\n" "$ac_cv_c_cfi_support" >&6; } +if test "$ac_cv_c_cfi_support" = "yes" +then
- DLLFLAGS="$DLLFLAGS -fasynchronous-unwind-tables"
- LDDLLFLAGS="$LDDLLFLAGS -fasynchronous-unwind-tables"
+else
- if test "x$enable_win64" = "xyes"
- then
as_fn_append wine_warnings "|building 64-bit Wine without support for CFI directives; exception handling will not work properly."
- fi
+fi
+case $build_os in
- cygwin*|mingw32*) TOOLSEXT=".exe"
- ;;
+esac
+case $host_os in
- linux*)
- case $host_cpu in
*i[3456789]86*|x86_64*|*aarch64*|arm*)
test "$wine_binary" = wine || wine_fn_append_file CONFIGURE_TARGETS "loader/wine-preloader"
WINELOADER_PROGRAMS="$WINELOADER_PROGRAMS $wine_binary-preloader"
;;
- esac
- ;;
+esac
+ac_save_CFLAGS="$CFLAGS" +CFLAGS="$CFLAGS $BUILTINFLAG" +ac_fn_c_check_func "$LINENO" "__res_get_state" "ac_cv_func___res_get_state" +if test "x$ac_cv_func___res_get_state" = xyes +then :
- printf "%s\n" "#define HAVE___RES_GET_STATE 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "__res_getservers" "ac_cv_func___res_getservers" +if test "x$ac_cv_func___res_getservers" = xyes +then :
- printf "%s\n" "#define HAVE___RES_GETSERVERS 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "_spawnvp" "ac_cv_func__spawnvp" +if test "x$ac_cv_func__spawnvp" = xyes +then :
- printf "%s\n" "#define HAVE__SPAWNVP 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "epoll_create" "ac_cv_func_epoll_create" +if test "x$ac_cv_func_epoll_create" = xyes +then :
- printf "%s\n" "#define HAVE_EPOLL_CREATE 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "fnmatch" "ac_cv_func_fnmatch" +if test "x$ac_cv_func_fnmatch" = xyes +then :
- printf "%s\n" "#define HAVE_FNMATCH 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "fork" "ac_cv_func_fork" +if test "x$ac_cv_func_fork" = xyes +then :
- printf "%s\n" "#define HAVE_FORK 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "fstatfs" "ac_cv_func_fstatfs" +if test "x$ac_cv_func_fstatfs" = xyes +then :
- printf "%s\n" "#define HAVE_FSTATFS 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "futimens" "ac_cv_func_futimens" +if test "x$ac_cv_func_futimens" = xyes +then :
- printf "%s\n" "#define HAVE_FUTIMENS 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "futimes" "ac_cv_func_futimes" +if test "x$ac_cv_func_futimes" = xyes +then :
- printf "%s\n" "#define HAVE_FUTIMES 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "futimesat" "ac_cv_func_futimesat" +if test "x$ac_cv_func_futimesat" = xyes +then :
- printf "%s\n" "#define HAVE_FUTIMESAT 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "getattrlist" "ac_cv_func_getattrlist" +if test "x$ac_cv_func_getattrlist" = xyes +then :
- printf "%s\n" "#define HAVE_GETATTRLIST 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "getauxval" "ac_cv_func_getauxval" +if test "x$ac_cv_func_getauxval" = xyes +then :
- printf "%s\n" "#define HAVE_GETAUXVAL 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "getifaddrs" "ac_cv_func_getifaddrs" +if test "x$ac_cv_func_getifaddrs" = xyes +then :
- printf "%s\n" "#define HAVE_GETIFADDRS 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "getopt_long_only" "ac_cv_func_getopt_long_only" +if test "x$ac_cv_func_getopt_long_only" = xyes +then :
- printf "%s\n" "#define HAVE_GETOPT_LONG_ONLY 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "getrandom" "ac_cv_func_getrandom" +if test "x$ac_cv_func_getrandom" = xyes +then :
- printf "%s\n" "#define HAVE_GETRANDOM 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "kqueue" "ac_cv_func_kqueue" +if test "x$ac_cv_func_kqueue" = xyes +then :
- printf "%s\n" "#define HAVE_KQUEUE 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "lstat" "ac_cv_func_lstat" +if test "x$ac_cv_func_lstat" = xyes +then :
- printf "%s\n" "#define HAVE_LSTAT 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "mach_continuous_time" "ac_cv_func_mach_continuous_time" +if test "x$ac_cv_func_mach_continuous_time" = xyes +then :
- printf "%s\n" "#define HAVE_MACH_CONTINUOUS_TIME 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "pipe2" "ac_cv_func_pipe2" +if test "x$ac_cv_func_pipe2" = xyes +then :
- printf "%s\n" "#define HAVE_PIPE2 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "poll" "ac_cv_func_poll" +if test "x$ac_cv_func_poll" = xyes +then :
- printf "%s\n" "#define HAVE_POLL 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "port_create" "ac_cv_func_port_create" +if test "x$ac_cv_func_port_create" = xyes +then :
- printf "%s\n" "#define HAVE_PORT_CREATE 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "posix_fadvise" "ac_cv_func_posix_fadvise" +if test "x$ac_cv_func_posix_fadvise" = xyes +then :
- printf "%s\n" "#define HAVE_POSIX_FADVISE 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "prctl" "ac_cv_func_prctl" +if test "x$ac_cv_func_prctl" = xyes +then :
- printf "%s\n" "#define HAVE_PRCTL 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "pread" "ac_cv_func_pread" +if test "x$ac_cv_func_pread" = xyes +then :
- printf "%s\n" "#define HAVE_PREAD 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "proc_pidinfo" "ac_cv_func_proc_pidinfo" +if test "x$ac_cv_func_proc_pidinfo" = xyes +then :
- printf "%s\n" "#define HAVE_PROC_PIDINFO 1" >>confdefs.h
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_cfi_support" >&5 -$as_echo "$ac_cv_c_cfi_support" >&6; } -if test "$ac_cv_c_cfi_support" = "yes" -then
- DLLFLAGS="$DLLFLAGS -fasynchronous-unwind-tables"
- LDDLLFLAGS="$LDDLLFLAGS -fasynchronous-unwind-tables"
-else
- if test "x$enable_win64" = "xyes"
- then
as_fn_append wine_warnings "|building 64-bit Wine without support for CFI directives; exception handling will not work properly."
- fi
+ac_fn_c_check_func "$LINENO" "pwrite" "ac_cv_func_pwrite" +if test "x$ac_cv_func_pwrite" = xyes +then :
- printf "%s\n" "#define HAVE_PWRITE 1" >>confdefs.h
fi +ac_fn_c_check_func "$LINENO" "readlink" "ac_cv_func_readlink" +if test "x$ac_cv_func_readlink" = xyes +then :
- printf "%s\n" "#define HAVE_READLINK 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "sched_yield" "ac_cv_func_sched_yield" +if test "x$ac_cv_func_sched_yield" = xyes +then :
- printf "%s\n" "#define HAVE_SCHED_YIELD 1" >>confdefs.h
-case $build_os in
- cygwin*|mingw32*) TOOLSEXT=".exe"
- ;;
-esac +fi +ac_fn_c_check_func "$LINENO" "setproctitle" "ac_cv_func_setproctitle" +if test "x$ac_cv_func_setproctitle" = xyes +then :
- printf "%s\n" "#define HAVE_SETPROCTITLE 1" >>confdefs.h
-case $host_os in
- linux*)
- case $host_cpu in
*i[3456789]86*|x86_64*|*aarch64*|arm*)
test "$wine_binary" = wine || wine_fn_append_file CONFIGURE_TARGETS "loader/wine-preloader"
WINELOADER_PROGRAMS="$WINELOADER_PROGRAMS $wine_binary-preloader"
;;
- esac
- ;;
-esac +fi +ac_fn_c_check_func "$LINENO" "setprogname" "ac_cv_func_setprogname" +if test "x$ac_cv_func_setprogname" = xyes +then :
- printf "%s\n" "#define HAVE_SETPROGNAME 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "sigprocmask" "ac_cv_func_sigprocmask" +if test "x$ac_cv_func_sigprocmask" = xyes +then :
- printf "%s\n" "#define HAVE_SIGPROCMASK 1" >>confdefs.h
-ac_save_CFLAGS="$CFLAGS" -CFLAGS="$CFLAGS $BUILTINFLAG" -for ac_func in \
__res_get_state \
__res_getservers \
- _spawnvp \
- epoll_create \
- fnmatch \
- fork \
- fstatfs \
- futimens \
- futimes \
- futimesat \
- getattrlist \
- getauxval \
- getifaddrs \
- getopt_long_only \
- getrandom \
- kqueue \
- lstat \
- mach_continuous_time \
- pipe2 \
- poll \
- port_create \
- posix_fadvise \
- prctl \
- pread \
- proc_pidinfo \
- pwrite \
- readlink \
- sched_yield \
- setproctitle \
- setprogname \
- sigprocmask \
- symlink \
- sysinfo \
- tcdrain \
- thr_kill2
+fi +ac_fn_c_check_func "$LINENO" "symlink" "ac_cv_func_symlink" +if test "x$ac_cv_func_symlink" = xyes +then :
- printf "%s\n" "#define HAVE_SYMLINK 1" >>confdefs.h
-do :
- as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test "x$"$as_ac_var"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF +fi +ac_fn_c_check_func "$LINENO" "sysinfo" "ac_cv_func_sysinfo" +if test "x$ac_cv_func_sysinfo" = xyes +then :
- printf "%s\n" "#define HAVE_SYSINFO 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "tcdrain" "ac_cv_func_tcdrain" +if test "x$ac_cv_func_tcdrain" = xyes +then :
- printf "%s\n" "#define HAVE_TCDRAIN 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "thr_kill2" "ac_cv_func_thr_kill2" +if test "x$ac_cv_func_thr_kill2" = xyes +then :
- printf "%s\n" "#define HAVE_THR_KILL2 1" >>confdefs.h
fi -done
CFLAGS="$ac_save_CFLAGS"
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing dlopen" >&5 -$as_echo_n "checking for library containing dlopen... " >&6; } -if ${ac_cv_search_dlopen+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing dlopen" >&5 +printf %s "checking for library containing dlopen... " >&6; } +if test ${ac_cv_search_dlopen+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -18050,73 +20573,77 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char dlopen (); int -main () +main (void) { return dlopen (); ; return 0; } _ACEOF -for ac_lib in '' dl; do +for ac_lib in '' dl +do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi
- if ac_fn_c_try_link "$LINENO"; then :
- if ac_fn_c_try_link "$LINENO"
+then : ac_cv_search_dlopen=$ac_res fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext
- if ${ac_cv_search_dlopen+:} false; then :
- if test ${ac_cv_search_dlopen+y}
+then : break fi done -if ${ac_cv_search_dlopen+:} false; then : +if test ${ac_cv_search_dlopen+y} +then :
-else +else $as_nop ac_cv_search_dlopen=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_dlopen" >&5 -$as_echo "$ac_cv_search_dlopen" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_dlopen" >&5 +printf "%s\n" "$ac_cv_search_dlopen" >&6; } ac_res=$ac_cv_search_dlopen -if test "$ac_res" != no; then : +if test "$ac_res" != no +then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
fi
ac_wine_check_funcs_save_LIBS="$LIBS" LIBS="$LIBS $DL_LIBS" -for ac_func in dladdr dlinfo -do :
- as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test "x$"$as_ac_var"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_func "$LINENO" "dladdr" "ac_cv_func_dladdr" +if test "x$ac_cv_func_dladdr" = xyes +then :
- printf "%s\n" "#define HAVE_DLADDR 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "dlinfo" "ac_cv_func_dlinfo" +if test "x$ac_cv_func_dlinfo" = xyes +then :
- printf "%s\n" "#define HAVE_DLINFO 1" >>confdefs.h
fi -done
LIBS="$ac_wine_check_funcs_save_LIBS"
if test "$ac_cv_func_poll" = no then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for poll in -lpoll" >&5
-$as_echo_n "checking for poll in -lpoll... " >&6; } -if ${ac_cv_lib_poll_poll+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for poll in -lpoll" >&5
+printf %s "checking for poll in -lpoll... " >&6; } +if test ${ac_cv_lib_poll_poll+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lpoll $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -18125,42 +20652,42 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char poll (); int -main () +main (void) { return poll (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_poll_poll=yes -else +else $as_nop ac_cv_lib_poll_poll=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_poll_poll" >&5 -$as_echo "$ac_cv_lib_poll_poll" >&6; } -if test "x$ac_cv_lib_poll_poll" = xyes; then :
- $as_echo "#define HAVE_POLL 1" >>confdefs.h
+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_poll_poll" >&5 +printf "%s\n" "$ac_cv_lib_poll_poll" >&6; } +if test "x$ac_cv_lib_poll_poll" = xyes +then :
- printf "%s\n" "#define HAVE_POLL 1" >>confdefs.h POLL_LIBS="-lpoll"
fi
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gethostbyname" >&5 -$as_echo_n "checking for library containing gethostbyname... " >&6; } -if ${ac_cv_search_gethostbyname+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing gethostbyname" >&5 +printf %s "checking for library containing gethostbyname... " >&6; } +if test ${ac_cv_search_gethostbyname+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -18168,56 +20695,59 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char gethostbyname (); int -main () +main (void) { return gethostbyname (); ; return 0; } _ACEOF -for ac_lib in '' nsl; do +for ac_lib in '' nsl +do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi
- if ac_fn_c_try_link "$LINENO"; then :
- if ac_fn_c_try_link "$LINENO"
+then : ac_cv_search_gethostbyname=$ac_res fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext
- if ${ac_cv_search_gethostbyname+:} false; then :
- if test ${ac_cv_search_gethostbyname+y}
+then : break fi done -if ${ac_cv_search_gethostbyname+:} false; then : +if test ${ac_cv_search_gethostbyname+y} +then :
-else +else $as_nop ac_cv_search_gethostbyname=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_gethostbyname" >&5 -$as_echo "$ac_cv_search_gethostbyname" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_gethostbyname" >&5 +printf "%s\n" "$ac_cv_search_gethostbyname" >&6; } ac_res=$ac_cv_search_gethostbyname -if test "$ac_res" != no; then : +if test "$ac_res" != no +then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing connect" >&5 -$as_echo_n "checking for library containing connect... " >&6; } -if ${ac_cv_search_connect+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing connect" >&5 +printf %s "checking for library containing connect... " >&6; } +if test ${ac_cv_search_connect+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -18225,56 +20755,59 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char connect (); int -main () +main (void) { return connect (); ; return 0; } _ACEOF -for ac_lib in '' socket; do +for ac_lib in '' socket +do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi
- if ac_fn_c_try_link "$LINENO"; then :
- if ac_fn_c_try_link "$LINENO"
+then : ac_cv_search_connect=$ac_res fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext
- if ${ac_cv_search_connect+:} false; then :
- if test ${ac_cv_search_connect+y}
+then : break fi done -if ${ac_cv_search_connect+:} false; then : +if test ${ac_cv_search_connect+y} +then :
-else +else $as_nop ac_cv_search_connect=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_connect" >&5 -$as_echo "$ac_cv_search_connect" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_connect" >&5 +printf "%s\n" "$ac_cv_search_connect" >&6; } ac_res=$ac_cv_search_connect -if test "$ac_res" != no; then : +if test "$ac_res" != no +then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing inet_aton" >&5 -$as_echo_n "checking for library containing inet_aton... " >&6; } -if ${ac_cv_search_inet_aton+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing inet_aton" >&5 +printf %s "checking for library containing inet_aton... " >&6; } +if test ${ac_cv_search_inet_aton+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -18282,76 +20815,82 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char inet_aton (); int -main () +main (void) { return inet_aton (); ; return 0; } _ACEOF -for ac_lib in '' resolv; do +for ac_lib in '' resolv +do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi
- if ac_fn_c_try_link "$LINENO"; then :
- if ac_fn_c_try_link "$LINENO"
+then : ac_cv_search_inet_aton=$ac_res fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext
- if ${ac_cv_search_inet_aton+:} false; then :
- if test ${ac_cv_search_inet_aton+y}
+then : break fi done -if ${ac_cv_search_inet_aton+:} false; then : +if test ${ac_cv_search_inet_aton+y} +then :
-else +else $as_nop ac_cv_search_inet_aton=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_inet_aton" >&5 -$as_echo "$ac_cv_search_inet_aton" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_inet_aton" >&5 +printf "%s\n" "$ac_cv_search_inet_aton" >&6; } ac_res=$ac_cv_search_inet_aton -if test "$ac_res" != no; then : +if test "$ac_res" != no +then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
fi
-for ac_func in \
- getaddrinfo \
- getnameinfo \
- getservbyport \
+ac_fn_c_check_func "$LINENO" "getaddrinfo" "ac_cv_func_getaddrinfo" +if test "x$ac_cv_func_getaddrinfo" = xyes +then :
- printf "%s\n" "#define HAVE_GETADDRINFO 1" >>confdefs.h
-do :
- as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test "x$"$as_ac_var"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF +fi +ac_fn_c_check_func "$LINENO" "getnameinfo" "ac_cv_func_getnameinfo" +if test "x$ac_cv_func_getnameinfo" = xyes +then :
- printf "%s\n" "#define HAVE_GETNAMEINFO 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "getservbyport" "ac_cv_func_getservbyport" +if test "x$ac_cv_func_getservbyport" = xyes +then :
- printf "%s\n" "#define HAVE_GETSERVBYPORT 1" >>confdefs.h
fi -done
case $host_os in darwin*|macosx*) ;; *) ac_save_LIBS=$LIBS
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing clock_gettime" >&5
-$as_echo_n "checking for library containing clock_gettime... " >&6; } -if ${ac_cv_search_clock_gettime+:} false; then :
- $as_echo_n "(cached) " >&6
-else
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing clock_gettime" >&5
+printf %s "checking for library containing clock_gettime... " >&6; } +if test ${ac_cv_search_clock_gettime+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -18359,49 +20898,51 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char clock_gettime (); int -main () +main (void) { return clock_gettime (); ; return 0; } _ACEOF -for ac_lib in '' rt; do +for ac_lib in '' rt +do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi
- if ac_fn_c_try_link "$LINENO"; then :
- if ac_fn_c_try_link "$LINENO"
+then : ac_cv_search_clock_gettime=$ac_res fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext
- if ${ac_cv_search_clock_gettime+:} false; then :
- if test ${ac_cv_search_clock_gettime+y}
+then : break fi done -if ${ac_cv_search_clock_gettime+:} false; then : +if test ${ac_cv_search_clock_gettime+y} +then :
-else +else $as_nop ac_cv_search_clock_gettime=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_clock_gettime" >&5 -$as_echo "$ac_cv_search_clock_gettime" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_clock_gettime" >&5 +printf "%s\n" "$ac_cv_search_clock_gettime" >&6; } ac_res=$ac_cv_search_clock_gettime -if test "$ac_res" != no; then : +if test "$ac_res" != no +then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
-$as_echo "#define HAVE_CLOCK_GETTIME 1" >>confdefs.h +printf "%s\n" "#define HAVE_CLOCK_GETTIME 1" >>confdefs.h
test "$ac_res" = "none required" || RT_LIBS="$ac_res"
@@ -18413,46 +20954,52 @@ esac
if test "x$with_ldap" != "xno" then
if ${LDAP_CFLAGS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
if ${LDAP_CFLAGS:+false} :
+then :
- if test ${PKG_CONFIG+y}
+then : LDAP_CFLAGS=`$PKG_CONFIG --cflags openldap 2>/dev/null` fi fi
-if ${LDAP_LIBS:+false} :; then :
- if ${PKG_CONFIG+:} false; then :
+if ${LDAP_LIBS:+false} : +then :
- if test ${PKG_CONFIG+y}
+then : LDAP_LIBS=`$PKG_CONFIG --libs openldap 2>/dev/null` fi fi
LDAP_LIBS=${LDAP_LIBS:-"-lldap_r -llber"} -$as_echo "$as_me:${as_lineno-$LINENO}: openldap cflags: $LDAP_CFLAGS" >&5 -$as_echo "$as_me:${as_lineno-$LINENO}: openldap libs: $LDAP_LIBS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: openldap cflags: $LDAP_CFLAGS" >&5 +printf "%s\n" "$as_me:${as_lineno-$LINENO}: openldap libs: $LDAP_LIBS" >&5 ac_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $LDAP_CFLAGS" -for ac_header in ldap.h lber.h -do :
- as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" -if eval test "x$"$as_ac_Header"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_header_compile "$LINENO" "ldap.h" "ac_cv_header_ldap_h" "$ac_includes_default" +if test "x$ac_cv_header_ldap_h" = xyes +then :
- printf "%s\n" "#define HAVE_LDAP_H 1" >>confdefs.h
fi +ac_fn_c_check_header_compile "$LINENO" "lber.h" "ac_cv_header_lber_h" "$ac_includes_default" +if test "x$ac_cv_header_lber_h" = xyes +then :
- printf "%s\n" "#define HAVE_LBER_H 1" >>confdefs.h
-done +fi
if test "$ac_cv_header_ldap_h" = "yes" -a "$ac_cv_header_lber_h" = "yes" then ac_fn_c_check_type "$LINENO" "LDAPSortKey" "ac_cv_type_LDAPSortKey" "#include <ldap.h>
" -if test "x$ac_cv_type_LDAPSortKey" = xyes; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldap_initialize in -lldap_r" >&5
-$as_echo_n "checking for ldap_initialize in -lldap_r... " >&6; } -if ${ac_cv_lib_ldap_r_ldap_initialize+:} false; then :
- $as_echo_n "(cached) " >&6
-else +if test "x$ac_cv_type_LDAPSortKey" = xyes +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ldap_initialize in -lldap_r" >&5
+printf %s "checking for ldap_initialize in -lldap_r... " >&6; } +if test ${ac_cv_lib_ldap_r_ldap_initialize+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lldap_r $PTHREAD_LIBS $LDAP_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -18461,35 +21008,35 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char ldap_initialize (); int -main () +main (void) { return ldap_initialize (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_ldap_r_ldap_initialize=yes -else +else $as_nop ac_cv_lib_ldap_r_ldap_initialize=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ldap_r_ldap_initialize" >&5 -$as_echo "$ac_cv_lib_ldap_r_ldap_initialize" >&6; } -if test "x$ac_cv_lib_ldap_r_ldap_initialize" = xyes; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ber_init in -llber" >&5
-$as_echo_n "checking for ber_init in -llber... " >&6; } -if ${ac_cv_lib_lber_ber_init+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ldap_r_ldap_initialize" >&5 +printf "%s\n" "$ac_cv_lib_ldap_r_ldap_initialize" >&6; } +if test "x$ac_cv_lib_ldap_r_ldap_initialize" = xyes +then :
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ber_init in -llber" >&5
+printf %s "checking for ber_init in -llber... " >&6; } +if test ${ac_cv_lib_lber_ber_init+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-llber $PTHREAD_LIBS $LDAP_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext @@ -18498,66 +21045,94 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif char ber_init (); int -main () +main (void) { return ber_init (); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_lib_lber_ber_init=yes -else +else $as_nop ac_cv_lib_lber_ber_init=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lber_ber_init" >&5 -$as_echo "$ac_cv_lib_lber_ber_init" >&6; } -if test "x$ac_cv_lib_lber_ber_init" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lber_ber_init" >&5 +printf "%s\n" "$ac_cv_lib_lber_ber_init" >&6; } +if test "x$ac_cv_lib_lber_ber_init" = xyes +then :
-$as_echo "#define HAVE_LDAP 1" >>confdefs.h +printf "%s\n" "#define HAVE_LDAP 1" >>confdefs.h
-else +else $as_nop LDAP_LIBS="" fi
-else +else $as_nop LDAP_LIBS="" fi
-else +else $as_nop LDAP_LIBS="" fi
ac_wine_check_funcs_save_LIBS="$LIBS"
LIBS="$LIBS $LDAP_LIBS $PTHREAD_LIBS" -for ac_func in \
ldap_count_references \
ldap_first_reference \
ldap_next_reference \
ldap_parse_reference \
ldap_parse_sort_control \
ldap_parse_sortresponse_control \
ldap_parse_vlv_control \
ldap_parse_vlvresponse_control
-do :
- as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" -if eval test "x$"$as_ac_var"" = x"yes"; then :
- cat >>confdefs.h <<_ACEOF
-#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF +ac_fn_c_check_func "$LINENO" "ldap_count_references" "ac_cv_func_ldap_count_references" +if test "x$ac_cv_func_ldap_count_references" = xyes +then :
- printf "%s\n" "#define HAVE_LDAP_COUNT_REFERENCES 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "ldap_first_reference" "ac_cv_func_ldap_first_reference" +if test "x$ac_cv_func_ldap_first_reference" = xyes +then :
- printf "%s\n" "#define HAVE_LDAP_FIRST_REFERENCE 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "ldap_next_reference" "ac_cv_func_ldap_next_reference" +if test "x$ac_cv_func_ldap_next_reference" = xyes +then :
- printf "%s\n" "#define HAVE_LDAP_NEXT_REFERENCE 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "ldap_parse_reference" "ac_cv_func_ldap_parse_reference" +if test "x$ac_cv_func_ldap_parse_reference" = xyes +then :
- printf "%s\n" "#define HAVE_LDAP_PARSE_REFERENCE 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "ldap_parse_sort_control" "ac_cv_func_ldap_parse_sort_control" +if test "x$ac_cv_func_ldap_parse_sort_control" = xyes +then :
- printf "%s\n" "#define HAVE_LDAP_PARSE_SORT_CONTROL 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "ldap_parse_sortresponse_control" "ac_cv_func_ldap_parse_sortresponse_control" +if test "x$ac_cv_func_ldap_parse_sortresponse_control" = xyes +then :
- printf "%s\n" "#define HAVE_LDAP_PARSE_SORTRESPONSE_CONTROL 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "ldap_parse_vlv_control" "ac_cv_func_ldap_parse_vlv_control" +if test "x$ac_cv_func_ldap_parse_vlv_control" = xyes +then :
- printf "%s\n" "#define HAVE_LDAP_PARSE_VLV_CONTROL 1" >>confdefs.h
+fi +ac_fn_c_check_func "$LINENO" "ldap_parse_vlvresponse_control" "ac_cv_func_ldap_parse_vlvresponse_control" +if test "x$ac_cv_func_ldap_parse_vlvresponse_control" = xyes +then :
- printf "%s\n" "#define HAVE_LDAP_PARSE_VLVRESPONSE_CONTROL 1" >>confdefs.h
fi -done
LIBS="$ac_wine_check_funcs_save_LIBS" else @@ -18566,7 +21141,8 @@ LIBS="$ac_wine_check_funcs_save_LIBS" CPPFLAGS=$ac_save_CPPFLAGS
fi -if test "x$LDAP_LIBS" = "x"; then : +if test "x$LDAP_LIBS" = "x" +then : case "x$with_ldap" in x) as_fn_append wine_notices "|libldap (OpenLDAP) ${notice_platform}development files not found, LDAP won't be supported." ;; xno) ;; @@ -18576,101 +21152,107 @@ esac
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sched_setaffinity" >&5 -$as_echo_n "checking for sched_setaffinity... " >&6; } -if ${wine_cv_have_sched_setaffinity+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sched_setaffinity" >&5 +printf %s "checking for sched_setaffinity... " >&6; } +if test ${wine_cv_have_sched_setaffinity+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _GNU_SOURCE #include <sched.h> int -main () +main (void) { sched_setaffinity(0, 0, 0); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_have_sched_setaffinity=yes -else +else $as_nop wine_cv_have_sched_setaffinity=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_sched_setaffinity" >&5 -$as_echo "$wine_cv_have_sched_setaffinity" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_sched_setaffinity" >&5 +printf "%s\n" "$wine_cv_have_sched_setaffinity" >&6; } if test "$wine_cv_have_sched_setaffinity" = "yes" then
-$as_echo "#define HAVE_SCHED_SETAFFINITY 1" >>confdefs.h +printf "%s\n" "#define HAVE_SCHED_SETAFFINITY 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fallocate" >&5 -$as_echo_n "checking for fallocate... " >&6; } -if ${wine_cv_have_fallocate+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for fallocate" >&5 +printf %s "checking for fallocate... " >&6; } +if test ${wine_cv_have_fallocate+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _GNU_SOURCE #include <fcntl.h> int -main () +main (void) { fallocate(-1, 0, 0, 0); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_have_fallocate=yes -else +else $as_nop wine_cv_have_fallocate=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_fallocate" >&5 -$as_echo "$wine_cv_have_fallocate" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_fallocate" >&5 +printf "%s\n" "$wine_cv_have_fallocate" >&6; } if test "$wine_cv_have_fallocate" = "yes" then
-$as_echo "#define HAVE_FALLOCATE 1" >>confdefs.h +printf "%s\n" "#define HAVE_FALLOCATE 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 -$as_echo_n "checking for inline... " >&6; } -if ${ac_cv_c_inline+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 +printf %s "checking for inline... " >&6; } +if test ${ac_cv_c_inline+y} +then :
- printf %s "(cached) " >&6
+else $as_nop ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __cplusplus typedef int foo_t; -static $ac_kw foo_t static_foo () {return 0; } -$ac_kw foo_t foo () {return 0; } +static $ac_kw foo_t static_foo (void) {return 0; } +$ac_kw foo_t foo (void) {return 0; } #endif
_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : ac_cv_c_inline=$ac_kw fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext test "$ac_cv_c_inline" != no && break done
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5 -$as_echo "$ac_cv_c_inline" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5 +printf "%s\n" "$ac_cv_c_inline" >&6; }
case $ac_cv_c_inline in inline | yes) ;; @@ -18690,22 +21272,20 @@ esac ac_fn_c_check_type "$LINENO" "sigset_t" "ac_cv_type_sigset_t" "#include <sys/types.h> #include <signal.h> " -if test "x$ac_cv_type_sigset_t" = xyes; then : +if test "x$ac_cv_type_sigset_t" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_SIGSET_T 1 -_ACEOF +printf "%s\n" "#define HAVE_SIGSET_T 1" >>confdefs.h
fi
ac_fn_c_check_type "$LINENO" "request_sense" "ac_cv_type_request_sense" "#include <linux/cdrom.h> " -if test "x$ac_cv_type_request_sense" = xyes; then : +if test "x$ac_cv_type_request_sense" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_REQUEST_SENSE 1 -_ACEOF +printf "%s\n" "#define HAVE_REQUEST_SENSE 1" >>confdefs.h
fi @@ -18734,11 +21314,10 @@ ac_fn_c_check_type "$LINENO" "struct xinpgen" "ac_cv_type_struct_xinpgen" "#incl #include <netinet/in_pcb.h> #endif " -if test "x$ac_cv_type_struct_xinpgen" = xyes; then : +if test "x$ac_cv_type_struct_xinpgen" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_XINPGEN 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_XINPGEN 1" >>confdefs.h
fi @@ -18748,21 +21327,21 @@ ac_fn_c_check_member "$LINENO" "struct ff_effect" "direction" "ac_cv_member_stru #include <linux/input.h> #endif " -if test "x$ac_cv_member_struct_ff_effect_direction" = xyes; then : +if test "x$ac_cv_member_struct_ff_effect_direction" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_FF_EFFECT_DIRECTION 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_FF_EFFECT_DIRECTION 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for if_nameindex" >&5 -$as_echo_n "checking for if_nameindex... " >&6; } -if ${wine_cv_have_if_nameindex+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for if_nameindex" >&5 +printf %s "checking for if_nameindex... " >&6; } +if test ${wine_cv_have_if_nameindex+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef HAVE_SYS_TYPES_H @@ -18775,74 +21354,78 @@ else # include <net/if.h> #endif int -main () +main (void) { struct if_nameindex *p = if_nameindex(); return p->if_index; ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_have_if_nameindex=yes -else +else $as_nop wine_cv_have_if_nameindex=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_if_nameindex" >&5 -$as_echo "$wine_cv_have_if_nameindex" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_if_nameindex" >&5 +printf "%s\n" "$wine_cv_have_if_nameindex" >&6; } if test "$wine_cv_have_if_nameindex" = "yes" then
-$as_echo "#define HAVE_IF_NAMEINDEX 1" >>confdefs.h +printf "%s\n" "#define HAVE_IF_NAMEINDEX 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sigaddset" >&5 -$as_echo_n "checking for sigaddset... " >&6; } -if ${wine_cv_have_sigaddset+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sigaddset" >&5 +printf %s "checking for sigaddset... " >&6; } +if test ${wine_cv_have_sigaddset+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <signal.h> int -main () +main (void) { sigset_t set; sigaddset(&set,SIGTERM); ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_have_sigaddset=yes -else +else $as_nop wine_cv_have_sigaddset=no fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_sigaddset" >&5 -$as_echo "$wine_cv_have_sigaddset" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_have_sigaddset" >&5 +printf "%s\n" "$wine_cv_have_sigaddset" >&6; } if test "$wine_cv_have_sigaddset" = "yes" then
-$as_echo "#define HAVE_SIGADDSET 1" >>confdefs.h +printf "%s\n" "#define HAVE_SIGADDSET 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we can use re-entrant gethostbyname_r Linux style" >&5 -$as_echo_n "checking whether we can use re-entrant gethostbyname_r Linux style... " >&6; } -if ${wine_cv_linux_gethostbyname_r_6+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we can use re-entrant gethostbyname_r Linux style" >&5 +printf %s "checking whether we can use re-entrant gethostbyname_r Linux style... " >&6; } +if test ${wine_cv_linux_gethostbyname_r_6+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <netdb.h> int -main () +main (void) {
char *name=0;
@@ -18861,32 +21444,34 @@ main () return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : wine_cv_linux_gethostbyname_r_6=yes -else +else $as_nop wine_cv_linux_gethostbyname_r_6=no
fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_linux_gethostbyname_r_6" >&5 -$as_echo "$wine_cv_linux_gethostbyname_r_6" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_linux_gethostbyname_r_6" >&5 +printf "%s\n" "$wine_cv_linux_gethostbyname_r_6" >&6; } if test "$wine_cv_linux_gethostbyname_r_6" = "yes" then
-$as_echo "#define HAVE_LINUX_GETHOSTBYNAME_R_6 1" >>confdefs.h +printf "%s\n" "#define HAVE_LINUX_GETHOSTBYNAME_R_6 1" >>confdefs.h
fi
if test "$ac_cv_header_linux_joystick_h" = "yes" then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether linux/joystick.h uses the Linux 2.2+ API" >&5
-$as_echo_n "checking whether linux/joystick.h uses the Linux 2.2+ API... " >&6; } -if ${wine_cv_linux_joystick_22_api+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether linux/joystick.h uses the Linux 2.2+ API" >&5
+printf %s "checking whether linux/joystick.h uses the Linux 2.2+ API... " >&6; } +if test ${wine_cv_linux_joystick_22_api+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
@@ -18900,27 +21485,28 @@ else #endif
int -main () +main (void) { /*empty*/ ; return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_compile "$LINENO" +then : wine_cv_linux_joystick_22_api=yes -else +else $as_nop wine_cv_linux_joystick_22_api=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_linux_joystick_22_api" >&5 -$as_echo "$wine_cv_linux_joystick_22_api" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $wine_cv_linux_joystick_22_api" >&5 +printf "%s\n" "$wine_cv_linux_joystick_22_api" >&6; } if test "$wine_cv_linux_joystick_22_api" = "yes" then
-$as_echo "#define HAVE_LINUX_22_JOYSTICK_API 1" >>confdefs.h +printf "%s\n" "#define HAVE_LINUX_22_JOYSTICK_API 1" >>confdefs.h
fi
fi @@ -18933,11 +21519,10 @@ ac_fn_c_check_member "$LINENO" "struct msghdr" "msg_accrights" "ac_cv_member_str # include <sys/un.h> #endif " -if test "x$ac_cv_member_struct_msghdr_msg_accrights" = xyes; then : +if test "x$ac_cv_member_struct_msghdr_msg_accrights" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS 1" >>confdefs.h
fi @@ -18949,11 +21534,10 @@ ac_fn_c_check_member "$LINENO" "struct sockaddr" "sa_len" "ac_cv_member_struct_s # include <sys/un.h> #endif " -if test "x$ac_cv_member_struct_sockaddr_sa_len" = xyes; then : +if test "x$ac_cv_member_struct_sockaddr_sa_len" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_SOCKADDR_SA_LEN 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_SOCKADDR_SA_LEN 1" >>confdefs.h
fi @@ -18965,11 +21549,10 @@ ac_fn_c_check_member "$LINENO" "struct sockaddr_un" "sun_len" "ac_cv_member_stru # include <sys/un.h> #endif " -if test "x$ac_cv_member_struct_sockaddr_un_sun_len" = xyes; then : +if test "x$ac_cv_member_struct_sockaddr_un_sun_len" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_SOCKADDR_UN_SUN_LEN 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_SOCKADDR_UN_SUN_LEN 1" >>confdefs.h
fi @@ -18980,11 +21563,10 @@ ac_fn_c_check_member "$LINENO" "scsireq_t" "cmd" "ac_cv_member_scsireq_t_cmd" "# #include <scsi/sg.h> #endif " -if test "x$ac_cv_member_scsireq_t_cmd" = xyes; then : +if test "x$ac_cv_member_scsireq_t_cmd" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_SCSIREQ_T_CMD 1 -_ACEOF +printf "%s\n" "#define HAVE_SCSIREQ_T_CMD 1" >>confdefs.h
fi @@ -18993,11 +21575,10 @@ ac_fn_c_check_member "$LINENO" "sg_io_hdr_t" "interface_id" "ac_cv_member_sg_io_ #include <scsi/sg.h> #endif " -if test "x$ac_cv_member_sg_io_hdr_t_interface_id" = xyes; then : +if test "x$ac_cv_member_sg_io_hdr_t_interface_id" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_SG_IO_HDR_T_INTERFACE_ID 1 -_ACEOF +printf "%s\n" "#define HAVE_SG_IO_HDR_T_INTERFACE_ID 1" >>confdefs.h
fi @@ -19005,11 +21586,10 @@ fi
ac_fn_c_check_member "$LINENO" "siginfo_t" "si_fd" "ac_cv_member_siginfo_t_si_fd" "#include <signal.h> " -if test "x$ac_cv_member_siginfo_t_si_fd" = xyes; then : +if test "x$ac_cv_member_siginfo_t_si_fd" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_SIGINFO_T_SI_FD 1 -_ACEOF +printf "%s\n" "#define HAVE_SIGINFO_T_SI_FD 1" >>confdefs.h
fi @@ -19020,11 +21600,10 @@ ac_fn_c_check_member "$LINENO" "struct mtget" "mt_blksiz" "ac_cv_member_struct_m #include <sys/mtio.h> #endif " -if test "x$ac_cv_member_struct_mtget_mt_blksiz" = xyes; then : +if test "x$ac_cv_member_struct_mtget_mt_blksiz" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_MTGET_MT_BLKSIZ 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_MTGET_MT_BLKSIZ 1" >>confdefs.h
fi @@ -19033,11 +21612,10 @@ ac_fn_c_check_member "$LINENO" "struct mtget" "mt_gstat" "ac_cv_member_struct_mt #include <sys/mtio.h> #endif " -if test "x$ac_cv_member_struct_mtget_mt_gstat" = xyes; then : +if test "x$ac_cv_member_struct_mtget_mt_gstat" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_MTGET_MT_GSTAT 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_MTGET_MT_GSTAT 1" >>confdefs.h
fi @@ -19046,11 +21624,10 @@ ac_fn_c_check_member "$LINENO" "struct mtget" "mt_blkno" "ac_cv_member_struct_mt #include <sys/mtio.h> #endif " -if test "x$ac_cv_member_struct_mtget_mt_blkno" = xyes; then : +if test "x$ac_cv_member_struct_mtget_mt_blkno" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_MTGET_MT_BLKNO 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_MTGET_MT_BLKNO 1" >>confdefs.h
fi @@ -19060,121 +21637,108 @@ ac_fn_c_check_member "$LINENO" "struct option" "name" "ac_cv_member_struct_optio #include <getopt.h> #endif " -if test "x$ac_cv_member_struct_option_name" = xyes; then : +if test "x$ac_cv_member_struct_option_name" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_OPTION_NAME 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_OPTION_NAME 1" >>confdefs.h
fi
ac_fn_c_check_member "$LINENO" "struct stat" "st_blocks" "ac_cv_member_struct_stat_st_blocks" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_blocks" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_blocks" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_BLOCKS 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_BLOCKS 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_mtim" "ac_cv_member_struct_stat_st_mtim" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_mtim" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_mtim" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_MTIM 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_MTIM 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_mtimespec" "ac_cv_member_struct_stat_st_mtimespec" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_mtimespec" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_mtimespec" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_MTIMESPEC 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_MTIMESPEC 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_ctim" "ac_cv_member_struct_stat_st_ctim" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_ctim" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_ctim" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_CTIM 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_CTIM 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_ctimespec" "ac_cv_member_struct_stat_st_ctimespec" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_ctimespec" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_ctimespec" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_CTIMESPEC 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_CTIMESPEC 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_atim" "ac_cv_member_struct_stat_st_atim" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_atim" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_atim" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_ATIM 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_ATIM 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_atimespec" "ac_cv_member_struct_stat_st_atimespec" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_atimespec" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_atimespec" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_ATIMESPEC 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_ATIMESPEC 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_birthtime" "ac_cv_member_struct_stat_st_birthtime" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_birthtime" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_birthtime" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_BIRTHTIME 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_BIRTHTIME 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_birthtim" "ac_cv_member_struct_stat_st_birthtim" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_birthtim" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_birthtim" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_BIRTHTIM 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_BIRTHTIM 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "st_birthtimespec" "ac_cv_member_struct_stat_st_birthtimespec" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat_st_birthtimespec" = xyes; then : +if test "x$ac_cv_member_struct_stat_st_birthtimespec" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "__st_birthtime" "ac_cv_member_struct_stat___st_birthtime" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat___st_birthtime" = xyes; then : +if test "x$ac_cv_member_struct_stat___st_birthtime" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT___ST_BIRTHTIME 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT___ST_BIRTHTIME 1" >>confdefs.h
fi ac_fn_c_check_member "$LINENO" "struct stat" "__st_birthtim" "ac_cv_member_struct_stat___st_birthtim" "$ac_includes_default" -if test "x$ac_cv_member_struct_stat___st_birthtim" = xyes; then : +if test "x$ac_cv_member_struct_stat___st_birthtim" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_STAT___ST_BIRTHTIM 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_STAT___ST_BIRTHTIM 1" >>confdefs.h
fi @@ -19187,11 +21751,10 @@ ac_fn_c_check_member "$LINENO" "struct sockaddr_in6" "sin6_scope_id" "ac_cv_memb #include <netinet/in.h> #endif " -if test "x$ac_cv_member_struct_sockaddr_in6_sin6_scope_id" = xyes; then : +if test "x$ac_cv_member_struct_sockaddr_in6_sin6_scope_id" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_SOCKADDR_IN6_SIN6_SCOPE_ID 1" >>confdefs.h
fi @@ -19207,11 +21770,10 @@ ac_fn_c_check_type "$LINENO" "struct __res_state" "ac_cv_type_struct___res_state #include <resolv.h> #endif " -if test "x$ac_cv_type_struct___res_state" = xyes; then : +if test "x$ac_cv_type_struct___res_state" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT___RES_STATE 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT___RES_STATE 1" >>confdefs.h
fi @@ -19221,11 +21783,10 @@ ac_fn_c_check_member "$LINENO" "struct __res_state" "_u._ext.nscount6" "ac_cv_me #include <resolv.h> #endif " -if test "x$ac_cv_member_struct___res_state__u__ext_nscount6" = xyes; then : +if test "x$ac_cv_member_struct___res_state__u__ext_nscount6" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT___RES_STATE__U__EXT_NSCOUNT6 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT___RES_STATE__U__EXT_NSCOUNT6 1" >>confdefs.h
fi @@ -19241,11 +21802,10 @@ ac_fn_c_check_member "$LINENO" "ns_msg" "_msg_ptr" "ac_cv_member_ns_msg__msg_ptr # include <arpa/nameser.h> #endif " -if test "x$ac_cv_member_ns_msg__msg_ptr" = xyes; then : +if test "x$ac_cv_member_ns_msg__msg_ptr" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_NS_MSG__MSG_PTR 1 -_ACEOF +printf "%s\n" "#define HAVE_NS_MSG__MSG_PTR 1" >>confdefs.h
fi @@ -19267,11 +21827,10 @@ ac_fn_c_check_member "$LINENO" "struct icmpstat" "icps_inhist" "ac_cv_member_str #include <netinet/icmp_var.h> #endif " -if test "x$ac_cv_member_struct_icmpstat_icps_inhist" = xyes; then : +if test "x$ac_cv_member_struct_icmpstat_icps_inhist" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_ICMPSTAT_ICPS_INHIST 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_ICMPSTAT_ICPS_INHIST 1" >>confdefs.h
fi @@ -19311,11 +21870,10 @@ ac_fn_c_check_member "$LINENO" "struct icmpstat" "icps_outhist" "ac_cv_member_st #include <netinet/icmp_var.h> #endif " -if test "x$ac_cv_member_struct_icmpstat_icps_outhist" = xyes; then : +if test "x$ac_cv_member_struct_icmpstat_icps_outhist" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_ICMPSTAT_ICPS_OUTHIST 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_ICMPSTAT_ICPS_OUTHIST 1" >>confdefs.h
fi @@ -19326,11 +21884,10 @@ ac_fn_c_check_member "$LINENO" "struct in6_pktinfo" "ipi6_addr" "ac_cv_member_st #include <netinet/in.h> #endif " -if test "x$ac_cv_member_struct_in6_pktinfo_ipi6_addr" = xyes; then : +if test "x$ac_cv_member_struct_in6_pktinfo_ipi6_addr" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_IN6_PKTINFO_IPI6_ADDR 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_IN6_PKTINFO_IPI6_ADDR 1" >>confdefs.h
fi @@ -19349,11 +21906,10 @@ ac_fn_c_check_member "$LINENO" "struct ipstat" "ips_total" "ac_cv_member_struct_ #include <netinet/ip_var.h> #endif " -if test "x$ac_cv_member_struct_ipstat_ips_total" = xyes; then : +if test "x$ac_cv_member_struct_ipstat_ips_total" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_IPSTAT_IPS_TOTAL 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_IPSTAT_IPS_TOTAL 1" >>confdefs.h
fi @@ -19363,11 +21919,10 @@ ac_fn_c_check_member "$LINENO" "struct ip_stats" "ips_total" "ac_cv_member_struc #include <netinet/ip_var.h> #endif " -if test "x$ac_cv_member_struct_ip_stats_ips_total" = xyes; then : +if test "x$ac_cv_member_struct_ip_stats_ips_total" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_IP_STATS_IPS_TOTAL 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_IP_STATS_IPS_TOTAL 1" >>confdefs.h
fi @@ -19389,11 +21944,10 @@ ac_fn_c_check_member "$LINENO" "struct tcpstat" "tcps_connattempt" "ac_cv_member #include <netinet/tcp_var.h> #endif " -if test "x$ac_cv_member_struct_tcpstat_tcps_connattempt" = xyes; then : +if test "x$ac_cv_member_struct_tcpstat_tcps_connattempt" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_TCPSTAT_TCPS_CONNATTEMPT 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_TCPSTAT_TCPS_CONNATTEMPT 1" >>confdefs.h
fi @@ -19403,11 +21957,10 @@ ac_fn_c_check_member "$LINENO" "struct tcp_stats" "tcps_connattempt" "ac_cv_memb #include <netinet/tcp_var.h> #endif " -if test "x$ac_cv_member_struct_tcp_stats_tcps_connattempt" = xyes; then : +if test "x$ac_cv_member_struct_tcp_stats_tcps_connattempt" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_TCP_STATS_TCPS_CONNATTEMPT 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_TCP_STATS_TCPS_CONNATTEMPT 1" >>confdefs.h
fi @@ -19429,11 +21982,10 @@ ac_fn_c_check_member "$LINENO" "struct udpstat" "udps_ipackets" "ac_cv_member_st #include <netinet/udp_var.h> #endif " -if test "x$ac_cv_member_struct_udpstat_udps_ipackets" = xyes; then : +if test "x$ac_cv_member_struct_udpstat_udps_ipackets" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_UDPSTAT_UDPS_IPACKETS 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_UDPSTAT_UDPS_IPACKETS 1" >>confdefs.h
fi @@ -19446,11 +21998,10 @@ ac_fn_c_check_member "$LINENO" "struct ifreq" "ifr_hwaddr" "ac_cv_member_struct_ # include <net/if.h> #endif " -if test "x$ac_cv_member_struct_ifreq_ifr_hwaddr" = xyes; then : +if test "x$ac_cv_member_struct_ifreq_ifr_hwaddr" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_IFREQ_IFR_HWADDR 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_IFREQ_IFR_HWADDR 1" >>confdefs.h
fi @@ -19460,11 +22011,10 @@ ac_fn_c_check_member "$LINENO" "struct sysinfo" "totalram" "ac_cv_member_struct_ # include <sys/sysinfo.h> #endif " -if test "x$ac_cv_member_struct_sysinfo_totalram" = xyes; then : +if test "x$ac_cv_member_struct_sysinfo_totalram" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_SYSINFO_TOTALRAM 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_SYSINFO_TOTALRAM 1" >>confdefs.h
fi @@ -19472,11 +22022,10 @@ ac_fn_c_check_member "$LINENO" "struct sysinfo" "mem_unit" "ac_cv_member_struct_ # include <sys/sysinfo.h> #endif " -if test "x$ac_cv_member_struct_sysinfo_mem_unit" = xyes; then : +if test "x$ac_cv_member_struct_sysinfo_mem_unit" = xyes +then :
-cat >>confdefs.h <<_ACEOF -#define HAVE_STRUCT_SYSINFO_MEM_UNIT 1 -_ACEOF +printf "%s\n" "#define HAVE_STRUCT_SYSINFO_MEM_UNIT 1" >>confdefs.h
fi @@ -19484,181 +22033,192 @@ fi
ac_save_LIBS="$LIBS" LIBS="$LIBS -lm" -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isfinite" >&5 -$as_echo_n "checking for isfinite... " >&6; } -if ${ac_cv_have_isfinite+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for isfinite" >&5 +printf %s "checking for isfinite... " >&6; } +if test ${ac_cv_have_isfinite+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _GNU_SOURCE #include <math.h> int -main () +main (void) { float f = 0.0; return isfinite(f) ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_have_isfinite="yes" -else +else $as_nop ac_cv_have_isfinite="no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_isfinite" >&5 -$as_echo "$ac_cv_have_isfinite" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_isfinite" >&5 +printf "%s\n" "$ac_cv_have_isfinite" >&6; } if test "$ac_cv_have_isfinite" = "yes" then
-$as_echo "#define HAVE_ISFINITE 1" >>confdefs.h +printf "%s\n" "#define HAVE_ISFINITE 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf" >&5 -$as_echo_n "checking for isinf... " >&6; } -if ${ac_cv_have_isinf+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for isinf" >&5 +printf %s "checking for isinf... " >&6; } +if test ${ac_cv_have_isinf+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <math.h> int -main () +main (void) { float f = 0.0; return isinf(f) ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_have_isinf="yes" -else +else $as_nop ac_cv_have_isinf="no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_isinf" >&5 -$as_echo "$ac_cv_have_isinf" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_isinf" >&5 +printf "%s\n" "$ac_cv_have_isinf" >&6; } if test "$ac_cv_have_isinf" = "yes" then
-$as_echo "#define HAVE_ISINF 1" >>confdefs.h +printf "%s\n" "#define HAVE_ISINF 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isnan" >&5 -$as_echo_n "checking for isnan... " >&6; } -if ${ac_cv_have_isnan+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for isnan" >&5 +printf %s "checking for isnan... " >&6; } +if test ${ac_cv_have_isnan+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <math.h> int -main () +main (void) { float f = 0.0; return isnan(f) ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_have_isnan="yes" -else +else $as_nop ac_cv_have_isnan="no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_isnan" >&5 -$as_echo "$ac_cv_have_isnan" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_isnan" >&5 +printf "%s\n" "$ac_cv_have_isnan" >&6; } if test "$ac_cv_have_isnan" = "yes" then
-$as_echo "#define HAVE_ISNAN 1" >>confdefs.h +printf "%s\n" "#define HAVE_ISNAN 1" >>confdefs.h
fi
LIBS="$ac_save_LIBS"
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __builtin_popcount" >&5 -$as_echo_n "checking for __builtin_popcount... " >&6; } -if ${ac_cv_have___builtin_popcount+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for __builtin_popcount" >&5 +printf %s "checking for __builtin_popcount... " >&6; } +if test ${ac_cv_have___builtin_popcount+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) { return __builtin_popcount(1) ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_have___builtin_popcount="yes" -else +else $as_nop ac_cv_have___builtin_popcount="no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have___builtin_popcount" >&5 -$as_echo "$ac_cv_have___builtin_popcount" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have___builtin_popcount" >&5 +printf "%s\n" "$ac_cv_have___builtin_popcount" >&6; } if test "$ac_cv_have___builtin_popcount" = "yes" then
-$as_echo "#define HAVE___BUILTIN_POPCOUNT 1" >>confdefs.h +printf "%s\n" "#define HAVE___BUILTIN_POPCOUNT 1" >>confdefs.h
fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __clear_cache" >&5 -$as_echo_n "checking for __clear_cache... " >&6; } -if ${ac_cv_have___clear_cache+:} false; then :
- $as_echo_n "(cached) " >&6
-else +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for __clear_cache" >&5 +printf %s "checking for __clear_cache... " >&6; } +if test ${ac_cv_have___clear_cache+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */
int -main () +main (void) { __clear_cache((void*)0, (void*)0); return 0; ; return 0; } _ACEOF -if ac_fn_c_try_link "$LINENO"; then : +if ac_fn_c_try_link "$LINENO" +then : ac_cv_have___clear_cache="yes" -else +else $as_nop ac_cv_have___clear_cache="no" fi -rm -f core conftest.err conftest.$ac_objext \ +rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have___clear_cache" >&5 -$as_echo "$ac_cv_have___clear_cache" >&6; } +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have___clear_cache" >&5 +printf "%s\n" "$ac_cv_have___clear_cache" >&6; } if test "$ac_cv_have___clear_cache" = "yes" then
-$as_echo "#define HAVE___CLEAR_CACHE 1" >>confdefs.h +printf "%s\n" "#define HAVE___CLEAR_CACHE 1" >>confdefs.h
fi
case $host_cpu in
- *i[3456789]86*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __i386__" >&5
-$as_echo_n "checking whether we need to define __i386__... " >&6; } -if ${ac_cv_cpp_def___i386__+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- *i[3456789]86*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __i386__" >&5
+printf %s "checking whether we need to define __i386__... " >&6; } +if test ${ac_cv_cpp_def___i386__+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __i386__ @@ -19666,25 +22226,28 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- $EGREP "yes" >/dev/null 2>&1; then :
- $EGREP "yes" >/dev/null 2>&1
+then : ac_cv_cpp_def___i386__=yes -else +else $as_nop ac_cv_cpp_def___i386__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___i386__" >&5 -$as_echo "$ac_cv_cpp_def___i386__" >&6; } -if test "x$ac_cv_cpp_def___i386__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___i386__" >&5 +printf "%s\n" "$ac_cv_cpp_def___i386__" >&6; } +if test "x$ac_cv_cpp_def___i386__" = xyes +then : CFLAGS="$CFLAGS -D__i386__" LINTFLAGS="$LINTFLAGS -D__i386__" fi ;;
- *x86_64*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __x86_64__" >&5
-$as_echo_n "checking whether we need to define __x86_64__... " >&6; } -if ${ac_cv_cpp_def___x86_64__+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- *x86_64*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __x86_64__" >&5
+printf %s "checking whether we need to define __x86_64__... " >&6; } +if test ${ac_cv_cpp_def___x86_64__+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __x86_64__ @@ -19692,25 +22255,28 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- $EGREP "yes" >/dev/null 2>&1; then :
- $EGREP "yes" >/dev/null 2>&1
+then : ac_cv_cpp_def___x86_64__=yes -else +else $as_nop ac_cv_cpp_def___x86_64__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___x86_64__" >&5 -$as_echo "$ac_cv_cpp_def___x86_64__" >&6; } -if test "x$ac_cv_cpp_def___x86_64__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___x86_64__" >&5 +printf "%s\n" "$ac_cv_cpp_def___x86_64__" >&6; } +if test "x$ac_cv_cpp_def___x86_64__" = xyes +then : CFLAGS="$CFLAGS -D__x86_64__" LINTFLAGS="$LINTFLAGS -D__x86_64__" fi ;;
- *sparc64*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __sparc64__" >&5
-$as_echo_n "checking whether we need to define __sparc64__... " >&6; } -if ${ac_cv_cpp_def___sparc64__+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- *sparc64*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __sparc64__" >&5
+printf %s "checking whether we need to define __sparc64__... " >&6; } +if test ${ac_cv_cpp_def___sparc64__+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __sparc64__ @@ -19718,25 +22284,28 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- $EGREP "yes" >/dev/null 2>&1; then :
- $EGREP "yes" >/dev/null 2>&1
+then : ac_cv_cpp_def___sparc64__=yes -else +else $as_nop ac_cv_cpp_def___sparc64__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___sparc64__" >&5 -$as_echo "$ac_cv_cpp_def___sparc64__" >&6; } -if test "x$ac_cv_cpp_def___sparc64__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___sparc64__" >&5 +printf "%s\n" "$ac_cv_cpp_def___sparc64__" >&6; } +if test "x$ac_cv_cpp_def___sparc64__" = xyes +then : CFLAGS="$CFLAGS -D__sparc64__" LINTFLAGS="$LINTFLAGS -D__sparc64__" fi ;;
- *sparc*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __sparc__" >&5
-$as_echo_n "checking whether we need to define __sparc__... " >&6; } -if ${ac_cv_cpp_def___sparc__+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- *sparc*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __sparc__" >&5
+printf %s "checking whether we need to define __sparc__... " >&6; } +if test ${ac_cv_cpp_def___sparc__+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __sparc__ @@ -19744,25 +22313,28 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- $EGREP "yes" >/dev/null 2>&1; then :
- $EGREP "yes" >/dev/null 2>&1
+then : ac_cv_cpp_def___sparc__=yes -else +else $as_nop ac_cv_cpp_def___sparc__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___sparc__" >&5 -$as_echo "$ac_cv_cpp_def___sparc__" >&6; } -if test "x$ac_cv_cpp_def___sparc__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___sparc__" >&5 +printf "%s\n" "$ac_cv_cpp_def___sparc__" >&6; } +if test "x$ac_cv_cpp_def___sparc__" = xyes +then : CFLAGS="$CFLAGS -D__sparc__" LINTFLAGS="$LINTFLAGS -D__sparc__" fi ;;
- *powerpc64*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __powerpc64__" >&5
-$as_echo_n "checking whether we need to define __powerpc64__... " >&6; } -if ${ac_cv_cpp_def___powerpc64__+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- *powerpc64*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __powerpc64__" >&5
+printf %s "checking whether we need to define __powerpc64__... " >&6; } +if test ${ac_cv_cpp_def___powerpc64__+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __powerpc64__ @@ -19770,25 +22342,28 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- $EGREP "yes" >/dev/null 2>&1; then :
- $EGREP "yes" >/dev/null 2>&1
+then : ac_cv_cpp_def___powerpc64__=yes -else +else $as_nop ac_cv_cpp_def___powerpc64__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___powerpc64__" >&5 -$as_echo "$ac_cv_cpp_def___powerpc64__" >&6; } -if test "x$ac_cv_cpp_def___powerpc64__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___powerpc64__" >&5 +printf "%s\n" "$ac_cv_cpp_def___powerpc64__" >&6; } +if test "x$ac_cv_cpp_def___powerpc64__" = xyes +then : CFLAGS="$CFLAGS -D__powerpc64__" LINTFLAGS="$LINTFLAGS -D__powerpc64__" fi ;;
- *powerpc*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __powerpc__" >&5
-$as_echo_n "checking whether we need to define __powerpc__... " >&6; } -if ${ac_cv_cpp_def___powerpc__+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- *powerpc*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __powerpc__" >&5
+printf %s "checking whether we need to define __powerpc__... " >&6; } +if test ${ac_cv_cpp_def___powerpc__+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __powerpc__ @@ -19796,25 +22371,28 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- $EGREP "yes" >/dev/null 2>&1; then :
- $EGREP "yes" >/dev/null 2>&1
+then : ac_cv_cpp_def___powerpc__=yes -else +else $as_nop ac_cv_cpp_def___powerpc__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___powerpc__" >&5 -$as_echo "$ac_cv_cpp_def___powerpc__" >&6; } -if test "x$ac_cv_cpp_def___powerpc__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___powerpc__" >&5 +printf "%s\n" "$ac_cv_cpp_def___powerpc__" >&6; } +if test "x$ac_cv_cpp_def___powerpc__" = xyes +then : CFLAGS="$CFLAGS -D__powerpc__" LINTFLAGS="$LINTFLAGS -D__powerpc__" fi ;;
- *aarch64*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __aarch64__" >&5
-$as_echo_n "checking whether we need to define __aarch64__... " >&6; } -if ${ac_cv_cpp_def___aarch64__+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- *aarch64*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __aarch64__" >&5
+printf %s "checking whether we need to define __aarch64__... " >&6; } +if test ${ac_cv_cpp_def___aarch64__+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __aarch64__ @@ -19822,25 +22400,28 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- $EGREP "yes" >/dev/null 2>&1; then :
- $EGREP "yes" >/dev/null 2>&1
+then : ac_cv_cpp_def___aarch64__=yes -else +else $as_nop ac_cv_cpp_def___aarch64__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___aarch64__" >&5 -$as_echo "$ac_cv_cpp_def___aarch64__" >&6; } -if test "x$ac_cv_cpp_def___aarch64__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___aarch64__" >&5 +printf "%s\n" "$ac_cv_cpp_def___aarch64__" >&6; } +if test "x$ac_cv_cpp_def___aarch64__" = xyes +then : CFLAGS="$CFLAGS -D__aarch64__" LINTFLAGS="$LINTFLAGS -D__aarch64__" fi ;;
- *arm*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __arm__" >&5
-$as_echo_n "checking whether we need to define __arm__... " >&6; } -if ${ac_cv_cpp_def___arm__+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- *arm*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __arm__" >&5
+printf %s "checking whether we need to define __arm__... " >&6; } +if test ${ac_cv_cpp_def___arm__+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __arm__ @@ -19848,28 +22429,31 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- $EGREP "yes" >/dev/null 2>&1; then :
- $EGREP "yes" >/dev/null 2>&1
+then : ac_cv_cpp_def___arm__=yes -else +else $as_nop ac_cv_cpp_def___arm__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___arm__" >&5 -$as_echo "$ac_cv_cpp_def___arm__" >&6; } -if test "x$ac_cv_cpp_def___arm__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___arm__" >&5 +printf "%s\n" "$ac_cv_cpp_def___arm__" >&6; } +if test "x$ac_cv_cpp_def___arm__" = xyes +then : CFLAGS="$CFLAGS -D__arm__" LINTFLAGS="$LINTFLAGS -D__arm__" fi ;; esac
case $host_vendor in
- *sun*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need to define __sun__" >&5
-$as_echo_n "checking whether we need to define __sun__... " >&6; } -if ${ac_cv_cpp_def___sun__+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- *sun*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we need to define __sun__" >&5
+printf %s "checking whether we need to define __sun__... " >&6; } +if test ${ac_cv_cpp_def___sun__+y} +then :
- printf %s "(cached) " >&6
+else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __sun__ @@ -19877,17 +22461,19 @@ yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- $EGREP "yes" >/dev/null 2>&1; then :
- $EGREP "yes" >/dev/null 2>&1
+then : ac_cv_cpp_def___sun__=yes -else +else $as_nop ac_cv_cpp_def___sun__=no fi -rm -f conftest* +rm -rf conftest*
fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___sun__" >&5 -$as_echo "$ac_cv_cpp_def___sun__" >&6; } -if test "x$ac_cv_cpp_def___sun__" = xyes; then : +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_def___sun__" >&5 +printf "%s\n" "$ac_cv_cpp_def___sun__" >&6; } +if test "x$ac_cv_cpp_def___sun__" = xyes +then : CFLAGS="$CFLAGS -D__sun__" LINTFLAGS="$LINTFLAGS -D__sun__" fi ;; @@ -19899,7 +22485,7 @@ esac
ac_config_commands="$ac_config_commands include/stamp-h"
-$as_echo_n "creating Makefile rules..." >&6 +printf %s "creating Makefile rules..." >&6
ALL_VARS_RULES="I386_LIBS = $I386_LIBS OPENGL_LIBS = $OPENGL_LIBS @@ -20133,6 +22719,7 @@ wine_fn_config_makefile dlls/api-ms-win-core-processthreads-l1-1-0 enable_api_ms wine_fn_config_makefile dlls/api-ms-win-core-processthreads-l1-1-1 enable_api_ms_win_core_processthreads_l1_1_1 wine_fn_config_makefile dlls/api-ms-win-core-processthreads-l1-1-2 enable_api_ms_win_core_processthreads_l1_1_2 wine_fn_config_makefile dlls/api-ms-win-core-processthreads-l1-1-3 enable_api_ms_win_core_processthreads_l1_1_3 +wine_fn_config_makefile dlls/api-ms-win-core-processtopology-l1-1-0 enable_api_ms_win_core_processtopology_l1_1_0 wine_fn_config_makefile dlls/api-ms-win-core-processtopology-obsolete-l1-1-0 enable_api_ms_win_core_processtopology_obsolete_l1_1_0 wine_fn_config_makefile dlls/api-ms-win-core-profile-l1-1-0 enable_api_ms_win_core_profile_l1_1_0 wine_fn_config_makefile dlls/api-ms-win-core-psapi-ansi-l1-1-0 enable_api_ms_win_core_psapi_ansi_l1_1_0 @@ -21422,7 +24009,7 @@ server/wineserver" esac fi
-$as_echo " done" >&6 +printf "%s\n" " done" >&6 cat >confcache <<_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure @@ -21450,8 +24037,8 @@ _ACEOF case $ac_val in #( *${as_nl}*) case $ac_var in #(
*_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
-$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
*_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
+printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( @@ -21481,15 +24068,15 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; /^ac_cv_env_/b end t clear :clear
s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
s/^\([^=]*\)=\(.*[{}].*\)$/test ${\1+y} || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache
if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
-$as_echo "$as_me: updating cache $cache_file" >&6;}
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
+printf "%s\n" "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else @@ -21503,8 +24090,8 @@ $as_echo "$as_me: updating cache $cache_file" >&6;} fi fi else
- { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
-$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
+printf "%s\n" "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache @@ -21521,7 +24108,7 @@ U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/$U././;s/.o$//;s/.obj$//'
- ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
- ac_i=`printf "%s\n" "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " ${LIBOBJDIR}$ac_i$U.$ac_objext"
@@ -21537,8 +24124,8 @@ LTLIBOBJS=$ac_ltlibobjs ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 -$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +printf "%s\n" "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL @@ -21561,14 +24148,16 @@ cat >>$CONFIG_STATUS <<_ASEOF || as_write_fail=1
# Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : +as_nop=: +if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 +then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST -else +else $as_nop case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( @@ -21578,46 +24167,46 @@ esac fi
+# Reset variables that may have inherited troublesome values from +# the environment.
+# IFS needs to be set, to space, tab, and newline, in precisely that order. +# (If _AS_PATH_WALK were called with IFS unset, it would have the +# side effect of setting IFS to empty, thus disabling word splitting.) +# Quoting is to prevent editors from complaining about space-tab. as_nl=' ' export as_nl -# Printing a long string crashes Solaris 7 /usr/bin/printf. -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo -# Prefer a ksh shell builtin over an external printf program on Solaris, -# but without wasting forks for bash or zsh. -if test -z "$BASH_VERSION$ZSH_VERSION" \
- && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='print -r --'
- as_echo_n='print -rn --'
-elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='printf %s\n'
- as_echo_n='printf %s'
-else
- if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
- as_echo_n='/usr/ucb/echo -n'
- else
- as_echo_body='eval expr "X$1" : "X\(.*\)"'
- as_echo_n_body='eval
arg=$1;
case $arg in #(
*"$as_nl"*)
- expr "X$arg" : "X\(.*\)$as_nl";
- arg=`expr "X$arg" : ".*$as_nl\(.*\)"`;;
esac;
expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
- '
- export as_echo_n_body
- as_echo_n='sh -c $as_echo_n_body as_echo'
- fi
- export as_echo_body
- as_echo='sh -c $as_echo_body as_echo'
-fi +IFS=" "" $as_nl"
+PS1='$ ' +PS2='> ' +PS4='+ '
+# Ensure predictable behavior from utilities with locale-dependent output. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE
+# We cannot yet rely on "unset" to work, but we need these variables +# to be unset--not just set to an empty or harmless value--now, to +# avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct +# also avoids known problems related to "unset" and subshell syntax +# in other old shells (e.g. bash 2.01 and pdksh 5.2.14). +for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH +do eval test ${$as_var+y} \
- && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
+done
+# Ensure that fds 0, 1, and 2 are open. +if (exec 3>&0) 2>/dev/null; then :; else exec 0</dev/null; fi +if (exec 3>&1) 2>/dev/null; then :; else exec 1>/dev/null; fi +if (exec 3>&2) ; then :; else exec 2>/dev/null; fi
# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then +if ${PATH_SEPARATOR+false} :; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || @@ -21626,13 +24215,6 @@ if test "${PATH_SEPARATOR+set}" != set; then fi
-# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -IFS=" "" $as_nl"
# Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( @@ -21641,8 +24223,12 @@ case $0 in #(( for as_dir in $PATH do IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
- case $as_dir in #(((
- '') as_dir=./ ;;
- */) ;;
- *) as_dir=$as_dir/ ;;
- esac
- test -r "$as_dir$0" && as_myself=$as_dir$0 && break done
IFS=$as_save_IFS
@@ -21654,30 +24240,10 @@ if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then
- $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
- printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1
fi
-# Unset variables that we do not need and which cause bugs (e.g. in -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" -# suppresses any "Segmentation fault" message there. '((' could -# trigger a bug in pdksh 5.2.14. -for as_var in BASH_ENV ENV MAIL MAILPATH -do eval test x${$as_var+set} = xset \
- && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
-done -PS1='$ ' -PS2='> ' -PS4='+ '
-# NLS nuisances. -LC_ALL=C -export LC_ALL -LANGUAGE=C -export LANGUAGE
-# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
# as_fn_error STATUS ERROR [LINENO LOG_FD] @@ -21690,13 +24256,14 @@ as_fn_error () as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
- printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi
- $as_echo "$as_me: error: $2" >&2
- printf "%s\n" "$as_me: error: $2" >&2 as_fn_exit $as_status
} # as_fn_error
# as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. @@ -21723,18 +24290,20 @@ as_fn_unset () { eval $1=; unset $1;} } as_unset=as_fn_unset
# as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. -if (eval "as_var=1; as_var+=2; test x$as_var = x12") 2>/dev/null; then : +if (eval "as_var=1; as_var+=2; test x$as_var = x12") 2>/dev/null +then : eval 'as_fn_append () { eval $1+=$2 }' -else +else $as_nop as_fn_append () { eval $1=$$1$2 @@ -21746,12 +24315,13 @@ fi # as_fn_append # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. -if (eval "test $(( 1 + 1 )) = 2") 2>/dev/null; then : +if (eval "test $(( 1 + 1 )) = 2") 2>/dev/null +then : eval 'as_fn_arith () { as_val=$(( $* )) }' -else +else $as_nop as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` @@ -21782,7 +24352,7 @@ as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/([^/][^/]*)/*$' | \ X"$0" : 'X(//)$' | \ X"$0" : 'X(/)' | . 2>/dev/null || -$as_echo X/"$0" | +printf "%s\n" X/"$0" | sed '/^.*/([^/][^/]*)/*$/{ s//\1/ q @@ -21804,6 +24374,10 @@ as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits
+# Determine whether it's possible to make 'echo' print without a newline. +# These variables are no longer used directly by Autoconf, but are AC_SUBSTed +# for compatibility with existing Makefiles. ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) @@ -21817,6 +24391,12 @@ case `echo -n x` in #((((( ECHO_N='-n';; esac
+# For backward compatibility with old third-party macros, we provide +# the shell variables $as_echo and $as_echo_n. New code should use +# AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively. +as_echo='printf %s\n' +as_echo_n='printf %s'
rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file @@ -21858,7 +24438,7 @@ as_fn_mkdir_p () as_dirs= while :; do case $as_dir in #(
*\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
*\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs"
@@ -21867,7 +24447,7 @@ $as_expr X"$as_dir" : 'X(.*[^/])//*[^/][^/]*/*$' | \ X"$as_dir" : 'X(//)[^/]' | \ X"$as_dir" : 'X(//)$' | \ X"$as_dir" : 'X(/)' | . 2>/dev/null || -$as_echo X"$as_dir" | +printf "%s\n" X"$as_dir" | sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//\1/ q @@ -21930,7 +24510,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # values after options handling. ac_log=" This file was extended by Wine $as_me 6.16, which was -generated by GNU Autoconf 2.69. Invocation command line was +generated by GNU Autoconf 2.71. Invocation command line was
CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS @@ -21997,14 +24577,16 @@ Report bugs to wine-devel@winehq.org. Wine home page: https://www.winehq.org."
_ACEOF +ac_cs_config=`printf "%s\n" "$ac_configure_args" | sed "$ac_safe_unquote"` +ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\''/g"` cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 -ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\""`$]/\\&/g'`" +ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\ Wine config.status 6.16 -configured by $0, generated by GNU Autoconf 2.69, +configured by $0, generated by GNU Autoconf 2.71, with options \"$ac_cs_config\"
-Copyright (C) 2012 Free Software Foundation, Inc. +Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it."
@@ -22041,15 +24623,15 @@ do -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
- $as_echo "$ac_cs_version"; exit ;;
- printf "%s\n" "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c )
- $as_echo "$ac_cs_config"; exit ;;
- printf "%s\n" "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in
- *'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\''/g"` ;;
- *'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'"
@@ -22057,7 +24639,7 @@ do --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in
- *'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\''/g"` ;;
- *'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;;
@@ -22066,7 +24648,7 @@ do as_fn_error $? "ambiguous option: `$1' Try `$0 --help' for more information.";; --help | --hel | -h )
- $as_echo "$ac_cs_usage"; exit ;;
- printf "%s\n" "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;;
@@ -22094,7 +24676,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if $ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args $ac_configure_extra_args --no-create --no-recursion shift
- $as_echo "running CONFIG_SHELL=$SHELL $*" >&6
- \printf "%s\n" "running CONFIG_SHELL=$SHELL $*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "$@"
@@ -22108,7 +24690,7 @@ exec 5>>config.log sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX
- $as_echo "$ac_log"
- printf "%s\n" "$ac_log"
} >&5
_ACEOF @@ -22155,10 +24737,10 @@ done # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then
- test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
- test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
- test "${CONFIG_LINKS+set}" = set || CONFIG_LINKS=$config_links
- test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
- test ${CONFIG_FILES+y} || CONFIG_FILES=$config_files
- test ${CONFIG_HEADERS+y} || CONFIG_HEADERS=$config_headers
- test ${CONFIG_LINKS+y} || CONFIG_LINKS=$config_links
- test ${CONFIG_COMMANDS+y} || CONFIG_COMMANDS=$config_commands
fi
# Have a temporary directory for convenience. Make it in the build tree @@ -22494,7 +25076,7 @@ do esac || as_fn_error 1 "cannot find input file: `$ac_f'" "$LINENO" 5;; esac
case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
donecase $ac_f in *\'*) ac_f=`printf "%s\n" "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'"
@@ -22502,17 +25084,17 @@ do # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '`
$as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
`' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input"printf "%s\n" "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
-$as_echo "$as_me: creating $ac_file" >&6;}
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
+printf "%s\n" "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *&* | *|* | *\* )
ac_sed_conf_input=`$as_echo "$configure_input" |
*) ac_sed_conf_input=$configure_input;; esacac_sed_conf_input=`printf "%s\n" "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #(
@@ -22529,7 +25111,7 @@ $as_expr X"$ac_file" : 'X(.*[^/])//*[^/][^/]*/*$' | \ X"$ac_file" : 'X(//)[^/]' | \ X"$ac_file" : 'X(//)$' | \ X"$ac_file" : 'X(/)' | . 2>/dev/null || -$as_echo X"$ac_file" | +printf "%s\n" X"$ac_file" | sed '/^X(.*[^/])//*[^/][^/]*/*$/{ s//\1/ q @@ -22553,9 +25135,9 @@ $as_echo X"$ac_file" | case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *)
- ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^.[\/]||'`
- ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^.[\/]||'` # A ".." for each directory in $ac_dir_suffix.
- ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\/]*|/..|g;s|/||'`
- ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
@@ -22608,8 +25190,8 @@ ac_sed_dataroot=' case `eval "sed -n "$ac_sed_dataroot" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
-$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
+printf "%s\n" "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' @@ -22651,9 +25233,9 @@ test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } &&
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable `datarootdir'
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable `datarootdir'
which seems to be undefined. Please make sure it is defined" >&5 -$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable `datarootdir' +printf "%s\n" "$as_me: WARNING: $ac_file contains a reference to the variable `datarootdir' which seems to be undefined. Please make sure it is defined" >&2;}
rm -f "$ac_tmp/stdin" @@ -22669,20 +25251,20 @@ which seems to be undefined. Please make sure it is defined" >&2;} # if test x"$ac_file" != x-; then {
$as_echo "/* $configure_input */" \
} >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; thenprintf "%s\n" "/* $configure_input */" >&1 \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
{ $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
-$as_echo "$as_me: $ac_file is unchanged" >&6;}
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
+printf "%s\n" "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else
- $as_echo "/* $configure_input */" \
- printf "%s\n" "/* $configure_input */" >&1 \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi
@@ -22700,8 +25282,8 @@ $as_echo "$as_me: $ac_file is unchanged" >&6;} ac_source=$srcdir/$ac_source fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: linking $ac_source to $ac_file" >&5
-$as_echo "$as_me: linking $ac_source to $ac_file" >&6;}
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: linking $ac_source to $ac_file" >&5
+printf "%s\n" "$as_me: linking $ac_source to $ac_file" >&6;}
if test ! -r "$ac_source"; then as_fn_error $? "$ac_source: file not found" "$LINENO" 5
@@ -22719,8 +25301,8 @@ $as_echo "$as_me: linking $ac_source to $ac_file" >&6;} as_fn_error $? "cannot link or copy $ac_source to $ac_file" "$LINENO" 5 fi ;;
- :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
-$as_echo "$as_me: executing $ac_file commands" >&6;}
- :C) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
+printf "%s\n" "$as_me: executing $ac_file commands" >&6;} ;; esac
@@ -22763,8 +25345,8 @@ if test "$no_create" != yes; then $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
-$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
+printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi
@@ -22779,28 +25361,31 @@ if test "x$wine_notices" != x; then IFS="|" for msg in $wine_notices; do IFS="$ac_save_IFS"
if ${msg:+false} :; then :
if ${msg:+false} :
+then :
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: $msg" >&5
-$as_echo "$as_me: $msg" >&6;} +else $as_nop
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $msg" >&5
+printf "%s\n" "$as_me: $msg" >&6;} fi done fi IFS="|" for msg in $wine_warnings; do IFS="$ac_save_IFS"
- if ${msg:+false} :; then :
- if ${msg:+false} :
+then :
-else +else $as_nop echo >&2
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $msg" >&5
-$as_echo "$as_me: WARNING: $msg" >&2;}
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $msg" >&5
+printf "%s\n" "$as_me: WARNING: $msg" >&2;} fi done IFS="$ac_save_IFS"
-$as_echo " +printf "%s\n" " $as_me: Finished. Do '${ac_make}' to compile Wine. " >&6
diff --git a/configure.ac b/configure.ac index 594794ed93c..516d19675be 100644 --- a/configure.ac +++ b/configure.ac @@ -2833,6 +2833,7 @@ WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-processthreads-l1-1-0) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-processthreads-l1-1-1) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-processthreads-l1-1-2) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-processthreads-l1-1-3) +WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-processtopology-l1-1-0) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-processtopology-obsolete-l1-1-0) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-profile-l1-1-0) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-core-psapi-ansi-l1-1-0) diff --git a/dlls/api-ms-win-core-processtopology-l1-1-0/Makefile.in b/dlls/api-ms-win-core-processtopology-l1-1-0/Makefile.in new file mode 100644 index 00000000000..c6a3d3257e4 --- /dev/null +++ b/dlls/api-ms-win-core-processtopology-l1-1-0/Makefile.in @@ -0,0 +1 @@ +MODULE = api-ms-win-core-processtopology-l1-1-0.dll diff --git a/dlls/api-ms-win-core-processtopology-l1-1-0/api-ms-win-core-processtopology-l1-1-0.spec b/dlls/api-ms-win-core-processtopology-l1-1-0/api-ms-win-core-processtopology-l1-1-0.spec new file mode 100644 index 00000000000..c843a07fcaa --- /dev/null +++ b/dlls/api-ms-win-core-processtopology-l1-1-0/api-ms-win-core-processtopology-l1-1-0.spec @@ -0,0 +1,4 @@ +@ stdcall GetProcessGroupAffinity(long ptr ptr) kernel32.GetProcessGroupAffinity +@ stdcall GetThreadGroupAffinity(long ptr) kernel32.GetThreadGroupAffinity +@ stdcall SetProcessGroupAffinity(long ptr ptr) kernelbase.SetProcessGroupAffinity +@ stdcall SetThreadGroupAffinity(long ptr ptr) kernel32.SetThreadGroupAffinity diff --git a/include/config.h.in b/include/config.h.in index 2b488894a49..9f31d623615 100644 --- a/include/config.h.in +++ b/include/config.h.in @@ -396,9 +396,6 @@ /* Define to 1 if you have the <mach-o/loader.h> header file. */ #undef HAVE_MACH_O_LOADER_H
-/* Define to 1 if you have the <memory.h> header file. */ -#undef HAVE_MEMORY_H
/* Define to 1 if you have the <Metal/Metal.h> header file. */ #undef HAVE_METAL_METAL_H
@@ -618,6 +615,9 @@ /* Define to 1 if you have the <stdint.h> header file. */ #undef HAVE_STDINT_H
+/* Define to 1 if you have the <stdio.h> header file. */ +#undef HAVE_STDIO_H
/* Define to 1 if you have the <stdlib.h> header file. */ #undef HAVE_STDLIB_H
@@ -1178,17 +1178,14 @@ /* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */ #undef STAT_MACROS_BROKEN
-/* Define to 1 if you have the ANSI C header files. */ +/* Define to 1 if all of the C90 standard headers exist (not just the ones
- required in a freestanding environment). This macro is provided for
- backward compatibility; new code need not use it. */
#undef STDC_HEADERS
/* Define to 1 if the X Window System is missing or not being used. */ #undef X_DISPLAY_MISSING
-/* Enable large inode numbers on Mac OS X 10.5. */ -#ifndef _DARWIN_USE_64_BIT_INODE -# define _DARWIN_USE_64_BIT_INODE 1 -#endif
/* Number of bits in a file offset, on hosts where this is settable. */ #undef _FILE_OFFSET_BITS
diff --git a/tools/make_specfiles b/tools/make_specfiles index 44abb58b0a8..a7ee7e7f4db 100755 --- a/tools/make_specfiles +++ b/tools/make_specfiles @@ -297,6 +297,7 @@ my @dll_groups = "api-ms-win-core-wow64-l1-1-0", "api-ms-win-core-wow64-l1-1-1", "api-ms-win-core-xstate-l2-1-0",
- "api-ms-win-core-processtopology-l1-1-0", "api-ms-win-core-processtopology-obsolete-l1-1-0", "api-ms-win-core-util-l1-1-0", "api-ms-win-downlevel-kernel32-l2-1-0",