mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 00:24:12 +00:00
2b879af3e1
gcc didn't like a couple of the changes (rightly so: one was actually incorrect), and the fix for qfcc I didn't think to suggest while working with Emily. The general CFLAGS etc fixes mostly required just getting the order of operations right: check for attributes after setting the warnings flags, though those needed some care for gcc as it began warning about main wanting the const attribute. Fixing the imui link errors required moving the ui functions and setup to vulkan_lighting.c, which is really the only place they're used.
82 lines
2.4 KiB
Text
82 lines
2.4 KiB
Text
dnl ==================================================================
|
|
dnl Checks for compiler attributes
|
|
dnl ==================================================================
|
|
|
|
AC_MSG_CHECKING(for __attribute__)
|
|
AC_COMPILE_IFELSE(
|
|
[AC_LANG_PROGRAM(
|
|
[[static __attribute__ ((unused)) const char *foo = "bar";]]
|
|
[[int bar(void);]],
|
|
[[return bar();]])],
|
|
[AC_DEFINE(HAVE___ATTRIBUTE__)
|
|
AC_MSG_RESULT(yes)],
|
|
[AC_MSG_RESULT(no)]
|
|
)
|
|
AH_VERBATIM([HAVE___ATTRIBUTE__],
|
|
[/* Define this if the GCC __attribute__ keyword is available */
|
|
#undef HAVE___ATTRIBUTE__
|
|
#ifndef HAVE___ATTRIBUTE__
|
|
# define __attribute__(x)
|
|
#endif])
|
|
|
|
AC_MSG_CHECKING(for __attribute__ ((visibility)))
|
|
AC_COMPILE_IFELSE(
|
|
[AC_LANG_PROGRAM(
|
|
[[void foo (void);]]
|
|
[[__attribute__ ((visibility ("default"))) void foo (void) {}]]
|
|
[[int bar(void);]],
|
|
[[return bar();]]
|
|
)],
|
|
[AC_DEFINE(HAVE___ATTRIBUTE__VISIBILITY)
|
|
AC_MSG_RESULT(yes)],
|
|
[AC_MSG_RESULT(no)]
|
|
)
|
|
AH_VERBATIM([HAVE___ATTRIBUTE__VISIBILITY],
|
|
[/* Define this if the GCC visibility __attribute__ is available */
|
|
#undef HAVE___ATTRIBUTE__VISIBILITY
|
|
#ifdef HAVE___ATTRIBUTE__VISIBILITY
|
|
# define VISIBLE __attribute__((visibility ("default")))
|
|
#else
|
|
# define VISIBLE
|
|
#endif])
|
|
|
|
AC_MSG_CHECKING(for __attribute__ ((designated_init)))
|
|
AC_COMPILE_IFELSE(
|
|
[AC_LANG_PROGRAM(
|
|
[[struct x { char y; } __attribute__ ((designated_init));]]
|
|
[[int bar(void);]],
|
|
[[return bar();]]
|
|
)],
|
|
[AC_DEFINE(HAVE___ATTRIBUTE__DESIGNATED_INIT)
|
|
AC_MSG_RESULT(yes)],
|
|
[AC_MSG_RESULT(no)]
|
|
)
|
|
AH_VERBATIM([HAVE___ATTRIBUTE__DESIGNATED_INIT],
|
|
[/* Define this if the GCC designated_init __attribute__ is available */
|
|
#undef HAVE___ATTRIBUTE__DESIGNATED_INIT
|
|
#ifdef HAVE___ATTRIBUTE__DESIGNATED_INIT
|
|
# define DESIGNATED_INIT __attribute__((designated_init))
|
|
#else
|
|
# define DESIGNATED_INIT
|
|
#endif])
|
|
|
|
if test "x$SYSTYPE" = "xWIN32"; then
|
|
AC_MSG_CHECKING(for __attribute__ ((gcc_struct)))
|
|
AC_COMPILE_IFELSE(
|
|
[AC_LANG_PROGRAM(
|
|
[[typedef struct { int foo; }]]
|
|
[[__attribute__ ((gcc_struct)) gcc_struct_test;]],
|
|
[[return gcc_struct_test.foo]])],
|
|
[AC_DEFINE(HAVE___ATTRIBUTE__GCC_STRUCT)
|
|
AC_MSG_RESULT(yes)],
|
|
[AC_MSG_RESULT(no)
|
|
])
|
|
fi
|
|
AH_VERBATIM([HAVE___ATTRIBUTE__GCC_STRUCT],
|
|
[/* Define this if the GCC gcc_struct __attribute__ is available */
|
|
#undef HAVE___ATTRIBUTE__GCC_STRUCT
|
|
#ifdef HAVE___ATTRIBUTE__GCC_STRUCT
|
|
# define GCC_STRUCT __attribute__((gcc_struct))
|
|
#else
|
|
# define GCC_STRUCT
|
|
#endif])
|