Blame m4/signed.m4

Packit Service 9f2c4a
# signed.m4 serial 1 (gettext-0.10.40)
Packit Service 9f2c4a
dnl Copyright (C) 2001-2002 Free Software Foundation, Inc.
Packit Service 9f2c4a
dnl This file is free software, distributed under the terms of the GNU
Packit Service 9f2c4a
dnl General Public License.  As a special exception to the GNU General
Packit Service 9f2c4a
dnl Public License, this file may be distributed as part of a program
Packit Service 9f2c4a
dnl that contains a configuration script generated by Autoconf, under
Packit Service 9f2c4a
dnl the same distribution terms as the rest of that program.
Packit Service 9f2c4a
Packit Service 9f2c4a
dnl From Bruno Haible.
Packit Service 9f2c4a
Packit Service 9f2c4a
AC_DEFUN([bh_C_SIGNED],
Packit Service 9f2c4a
[
Packit Service 9f2c4a
  AC_CACHE_CHECK([for signed], bh_cv_c_signed,
Packit Service 9f2c4a
   [AC_TRY_COMPILE(, [signed char x;], bh_cv_c_signed=yes, bh_cv_c_signed=no)])
Packit Service 9f2c4a
  if test $bh_cv_c_signed = no; then
Packit Service 9f2c4a
    AC_DEFINE(signed, ,
Packit Service 9f2c4a
              [Define to empty if the C compiler doesn't support this keyword.])
Packit Service 9f2c4a
  fi
Packit Service 9f2c4a
])