Blame m4/signed.m4

Packit 575503
# signed.m4 serial 1 (gettext-0.10.40)
Packit 575503
dnl Copyright (C) 2001-2002 Free Software Foundation, Inc.
Packit 575503
dnl This file is free software; the Free Software Foundation
Packit 575503
dnl gives unlimited permission to copy and/or distribute it,
Packit 575503
dnl with or without modifications, as long as this notice is preserved.
Packit 575503
Packit 575503
dnl From Bruno Haible.
Packit 575503
Packit 575503
AC_DEFUN([bh_C_SIGNED],
Packit 575503
[
Packit 575503
  AC_CACHE_CHECK([for signed], bh_cv_c_signed,
Packit 575503
   [AC_TRY_COMPILE(, [signed char x;], bh_cv_c_signed=yes, bh_cv_c_signed=no)])
Packit 575503
  if test $bh_cv_c_signed = no; then
Packit 575503
    AC_DEFINE(signed, ,
Packit 575503
              [Define to empty if the C compiler doesn't support this keyword.])
Packit 575503
  fi
Packit 575503
])