diff options
author | cypherpunks <cypherpunks@torproject.org> | 2016-03-28 19:59:35 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-12-23 10:34:11 -0500 |
commit | be080a402fc780c8211eb2117ddf0150cfd7a946 (patch) | |
tree | bb46058cd30edcdcfa08669c2a74faaa92989088 /m4/ax_check_sign.m4 | |
parent | 0087fe36c10554dca69697912fceb1a97601e1ca (diff) | |
download | tor-be080a402fc780c8211eb2117ddf0150cfd7a946.tar.gz tor-be080a402fc780c8211eb2117ddf0150cfd7a946.zip |
Replace obsolete macros with modern equivalents
Diffstat (limited to 'm4/ax_check_sign.m4')
-rw-r--r-- | m4/ax_check_sign.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/ax_check_sign.m4 b/m4/ax_check_sign.m4 index 104b17014c..d67e114dba 100644 --- a/m4/ax_check_sign.m4 +++ b/m4/ax_check_sign.m4 @@ -41,8 +41,8 @@ AU_ALIAS([VL_CHECK_SIGN], [AX_CHECK_SIGN]) AC_DEFUN([AX_CHECK_SIGN], [ typename=`echo $1 | sed "s/@<:@^a-zA-Z0-9_@:>@/_/g"` AC_CACHE_CHECK([whether $1 is signed], ax_cv_decl_${typename}_signed, [ - AC_TRY_COMPILE([$4], - [ int foo @<:@ 1 - 2 * !((($1) -1) < 0) @:>@ ], + AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[$4]], + [[ int foo @<:@ 1 - 2 * !((($1) -1) < 0) @:>@ ]])], [ eval "ax_cv_decl_${typename}_signed=\"yes\"" ], [ eval "ax_cv_decl_${typename}_signed=\"no\"" ])]) symbolname=`echo $1 | sed "s/@<:@^a-zA-Z0-9_@:>@/_/g" | tr "a-z" "A-Z"` |