File: ext_goto.m4

package info (click to toggle)
gnu-smalltalk 3.0.3-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 26,460 kB
  • ctags: 13,326
  • sloc: ansic: 82,059; sh: 22,788; asm: 7,846; perl: 4,493; cpp: 3,517; awk: 1,471; yacc: 1,355; makefile: 1,151; xml: 886; lex: 843; sed: 258
file content (14 lines) | stat: -rw-r--r-- 446 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
dnl I'd like this to be edited in -*- Autoconf -*- mode...
dnl
AC_DEFUN([GST_C_GOTO_VOID_P], [

AC_CACHE_CHECK(for goto void *, gst_cv_c_goto_void_p,
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[
    void *x = &&label;
    goto *x;
    label: ]])],gst_cv_c_goto_void_p=yes,gst_cv_c_goto_void_p=no)
])
test $gst_cv_c_goto_void_p = yes && \
  AC_DEFINE(HAVE_GOTO_VOID_P, 1, [Define if your CC has the '&&' and 'goto void *' GCC extensions.])

])dnl