]> git.saurik.com Git - bison.git/blame - m4/c-bs-a.m4
Really call jm_PREREQ_TEMPNAME.
[bison.git] / m4 / c-bs-a.m4
CommitLineData
1a929557
PE
1# c-bs-a.m4 serial 4 (fileutils-4.1.3)
2dnl Copyright (C) 2000-2002 Free Software Foundation, Inc.
3dnl This file is free software, distributed under the terms of the GNU
4dnl General Public License. As a special exception to the GNU General
5dnl Public License, this file may be distributed as part of a program
6dnl that contains a configuration script generated by Autoconf, under
7dnl the same distribution terms as the rest of that program.
ff4a34be
AD
8
9dnl From Paul Eggert.
10
4a0d8936 11AC_DEFUN([AC_C_BACKSLASH_A],
ff4a34be
AD
12[
13 AC_CACHE_CHECK([whether backslash-a works in strings], ac_cv_c_backslash_a,
14 [AC_TRY_COMPILE([],
15 [
16#if '\a' == 'a'
17 syntax error;
18#endif
19 char buf['\a' == 'a' ? -1 : 1];
20 buf[0] = '\a';
21 return buf[0] != "\a"[0];
22 ],
23 ac_cv_c_backslash_a=yes,
24 ac_cv_c_backslash_a=no)])
25 if test $ac_cv_c_backslash_a = yes; then
26 AC_DEFINE(HAVE_C_BACKSLASH_A, 1,
27 [Define if backslash-a works in C strings.])
28 fi
29])