Blame m4/signed.m4

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