Support compilers with alternate spellings of typeof
The AC_C_TYPEOF adds a #undef typeof to its autogenerated config.h.in
template, but b8ab93dfbc
didn't copy that to dix-config.h.in
when HAVE_TYPEOF was, so the macro could claim typeof support but not
make it work, when used with compilers like Solaris Studio 12.1 which
only recognize it as __typeof__.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
3420a7778c
commit
5692a1e8f5
|
@ -429,6 +429,9 @@
|
||||||
/* Define to 1 if typeof works with your compiler. */
|
/* Define to 1 if typeof works with your compiler. */
|
||||||
#undef HAVE_TYPEOF
|
#undef HAVE_TYPEOF
|
||||||
|
|
||||||
|
/* Define to __typeof__ if your compiler spells it that way. */
|
||||||
|
#undef typeof
|
||||||
|
|
||||||
/* The compiler supported TLS storage class, prefering initial-exec if tls_model is supported */
|
/* The compiler supported TLS storage class, prefering initial-exec if tls_model is supported */
|
||||||
#undef TLS
|
#undef TLS
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue