Add HAVE_MACH_ABSOLUTE_TIME and friends (GH PR #15)

This commit is contained in:
Fred Helmesjö 2022-09-01 09:07:06 +02:00 committed by Boris Kolpackov
parent d16544b283
commit 0f32169884
3 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,13 @@
// HAVE_MACH_ABSOLUTE_TIME : BUILD2_AUTOCONF_LIBC_VERSION
#ifndef BUILD2_AUTOCONF_LIBC_VERSION
# error BUILD2_AUTOCONF_LIBC_VERSION appears to be conditionally included
#endif
#undef HAVE_MACH_ABSOLUTE_TIME
/* Mac OS X 10.0
*/
#if BUILD2_AUTOCONF_MACOS_PREREQ(10, 0)
# define HAVE_MACH_ABSOLUTE_TIME 1
#endif

View File

@ -0,0 +1,13 @@
// HAVE_MACH_MACH_H : BUILD2_AUTOCONF_LIBC_VERSION
#ifndef BUILD2_AUTOCONF_LIBC_VERSION
# error BUILD2_AUTOCONF_LIBC_VERSION appears to be conditionally included
#endif
#undef HAVE_MACH_MACH_H
/* Mac OS X 10.0
*/
#if BUILD2_AUTOCONF_MACOS_PREREQ(10, 0)
# define HAVE_MACH_MACH_H 1
#endif

View File

@ -0,0 +1,13 @@
// HAVE_MACH_MACH_TIME_H : BUILD2_AUTOCONF_LIBC_VERSION
#ifndef BUILD2_AUTOCONF_LIBC_VERSION
# error BUILD2_AUTOCONF_LIBC_VERSION appears to be conditionally included
#endif
#undef HAVE_MACH_MACH_TIME_H
/* Mac OS X 10.0
*/
#if BUILD2_AUTOCONF_MACOS_PREREQ(10, 0)
# define HAVE_MACH_MACH_TIME_H 1
#endif