From: Jim Meyering Date: Thu, 17 Mar 2005 19:01:15 +0000 (+0000) Subject: (gl_TYPEOF): New file/macro. X-Git-Tag: CPPI-1_12~1280 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9b9bda0ccf1aefad024633bc09f44257dafe9f50;p=thirdparty%2Fcoreutils.git (gl_TYPEOF): New file/macro. --- diff --git a/m4/typeof.m4 b/m4/typeof.m4 new file mode 100644 index 0000000000..42cdd3723e --- /dev/null +++ b/m4/typeof.m4 @@ -0,0 +1,23 @@ +#serial 1 +dnl Copyright (C) 2005 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +dnl Written by Jim Meyering. + +AC_DEFUN([gl_TYPEOF], +[AC_CACHE_CHECK([for __typeof__], gl_cv_typeof, + [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], + [[ + int i; + __typeof__ i j; + ]])], + [gl_cv_typeof=yes], + [gl_cv_typeof=no]) + ]) + if test $gl_cv_typeof = no; then + AC_DEFINE(HAVE_TYPEOF, 1, + [Define to 1 if __typeof__ works with your compiler.]) + fi +])