Remove no-longer-used #defines.

Only removing `#define`s for which there were zero search results.
This commit is contained in:
Joseph Cloutier
2022-05-22 00:36:43 -04:00
parent 869f8fa14e
commit cf5b033bbc
5 changed files with 0 additions and 491 deletions

View File

@@ -2,27 +2,12 @@
#define AL_API __attribute__((visibility("protected")))
#define ALC_API __attribute__((visibility("protected")))
#ifdef IN_IDE_PARSER
/* KDevelop's parser doesn't recognize the C99-standard restrict keyword, but
* recent versions (at least 4.5.1) do recognize GCC's __restrict. */
#define restrict __restrict
#endif
/* Define any available alignment declaration */
#define ALIGN(x) __attribute__((aligned(x)))
/* Define a built-in call indicating an aligned data pointer */
#define ASSUME_ALIGNED(x, y) x
/* Define a restrict macro for non-aliased pointers */
#define RESTRICT __restrict
/* Define if HRTF data is embedded in the library */
#define ALSOFT_EMBED_HRTF_DATA
/* Define if we have the sysconf function */
/* #undef HAVE_SYSCONF */
/* Define if we have the C11 aligned_alloc function */
/* #undef HAVE_ALIGNED_ALLOC */
@@ -95,66 +80,12 @@
/* Define if we have the stat function */
#define HAVE_STAT
/* Define if we have the lrintf function */
#define HAVE_LRINTF
/* Define if we have the modff function */
#define HAVE_MODFF
/* Define if we have the log2f function */
#define HAVE_LOG2F
/* Define if we have the cbrtf function */
#define HAVE_CBRTF
/* Define if we have the copysignf function */
#define HAVE_COPYSIGNF
/* Define if we have the strtof function */
/* #undef HAVE_STRTOF */
/* Define if we have the strnlen function */
#define HAVE_STRNLEN
/* Define if we have the __int64 type */
/* #undef HAVE___INT64 */
/* Define to the size of a long int type */
#define SIZEOF_LONG 4
/* Define to the size of a long long int type */
#define SIZEOF_LONG_LONG 8
/* Define if we have C99 _Bool support */
#define HAVE_C99_BOOL
/* Define if we have C11 _Static_assert support */
#define HAVE_C11_STATIC_ASSERT
/* Define if we have C11 _Alignas support */
#define HAVE_C11_ALIGNAS
/* Define if we have C11 _Atomic support */
#define HAVE_C11_ATOMIC
/* Define if we have GCC's destructor attribute */
#define HAVE_GCC_DESTRUCTOR
/* Define if we have GCC's format attribute */
#define HAVE_GCC_FORMAT
/* Define if we have stdint.h */
#define HAVE_STDINT_H
/* Define if we have stdbool.h */
#define HAVE_STDBOOL_H
/* Define if we have stdalign.h */
#define HAVE_STDALIGN_H
/* Define if we have windows.h */
/* #undef HAVE_WINDOWS_H */
/* Define if we have dlfcn.h */
#define HAVE_DLFCN_H
@@ -167,9 +98,6 @@
/* Define if we have dirent.h */
#define HAVE_DIRENT_H
/* Define if we have strings.h */
#define HAVE_STRINGS_H
/* Define if we have cpuid.h */
/* #undef HAVE_CPUID_H */
@@ -185,15 +113,6 @@
/* Define if we have initguid.h */
/* #undef HAVE_INITGUID_H */
/* Define if we have ieeefp.h */
/* #undef HAVE_IEEEFP_H */
/* Define if we have float.h */
#define HAVE_FLOAT_H
/* Define if we have fenv.h */
#define HAVE_FENV_H
/* Define if we have GCC's __get_cpuid() */
/* #undef HAVE_GCC_GET_CPUID */
@@ -206,12 +125,6 @@
/* Define if we have the _BitScanForward() intrinsic */
/* #undef HAVE_BITSCANFORWARD_INTRINSIC */
/* Define if we have _controlfp() */
/* #undef HAVE__CONTROLFP */
/* Define if we have __control87_2() */
/* #undef HAVE___CONTROL87_2 */
/* Define if we have pthread_setschedparam() */
#define HAVE_PTHREAD_SETSCHEDPARAM
@@ -226,9 +139,3 @@
/* Define if we have pthread_set_name_np() */
/* #undef HAVE_PTHREAD_SET_NAME_NP */
/* Define if we have pthread_mutexattr_setkind_np() */
/* #undef HAVE_PTHREAD_MUTEXATTR_SETKIND_NP */
/* Define if we have pthread_mutex_timedlock() */
/* #undef HAVE_PTHREAD_MUTEX_TIMEDLOCK */

View File

@@ -2,30 +2,15 @@
#define AL_API __attribute__((visibility("protected")))
#define ALC_API __attribute__((visibility("protected")))
#ifdef IN_IDE_PARSER
/* KDevelop's parser doesn't recognize the C99-standard restrict keyword, but
* recent versions (at least 4.5.1) do recognize GCC's __restrict. */
#define restrict __restrict
#endif
/* Define any available alignment declaration */
#define ALIGN(x) __attribute__((aligned(x)))
/* Define a built-in call indicating an aligned data pointer */
#define ASSUME_ALIGNED(x, y) x
/* Define a restrict macro for non-aliased pointers */
#define RESTRICT __restrict
/* Define if HRTF data is embedded in the library */
#define ALSOFT_EMBED_HRTF_DATA
/* Define if we have the sysconf function */
/* #undef HAVE_SYSCONF */
/* Define if we have the C11 aligned_alloc function */
/* #undef HAVE_ALIGNED_ALLOC */
/* Define if we have the posix_memalign function */
#define HAVE_POSIX_MEMALIGN
@@ -99,68 +84,12 @@
/* Define if we have the stat function */
#define HAVE_STAT
/* Define if we have the lrintf function */
#define HAVE_LRINTF
/* Define if we have the modff function */
#define HAVE_MODFF
/* Define if we have the log2f function */
#define HAVE_LOG2F
/* Define if we have the cbrtf function */
#define HAVE_CBRTF
/* Define if we have the copysignf function */
#define HAVE_COPYSIGNF
/* Define if we have the strtof function */
#define HAVE_STRTOF
/* Define if we have the strnlen function */
/* #undef HAVE_STRNLEN */
/* Define if we have the __int64 type */
/* #undef HAVE___INT64 */
/* Define to the size of a long int type */
#define SIZEOF_LONG 8
/* Define to the size of a long long int type */
#define SIZEOF_LONG_LONG 8
#if __cplusplus > 199711L
/* Define if we have C99 _Bool support */
#define HAVE_C99_BOOL
/* Define if we have C11 _Static_assert support */
#define HAVE_C11_STATIC_ASSERT
/* Define if we have C11 _Alignas support */
#define HAVE_C11_ALIGNAS
/* Define if we have C11 _Atomic support */
#define HAVE_C11_ATOMIC
#endif
/* Define if we have GCC's destructor attribute */
#define HAVE_GCC_DESTRUCTOR
/* Define if we have GCC's format attribute */
#define HAVE_GCC_FORMAT
/* Define if we have stdint.h */
#define HAVE_STDINT_H
/* Define if we have stdbool.h */
#define HAVE_STDBOOL_H
/* Define if we have stdalign.h */
#define HAVE_STDALIGN_H
/* Define if we have windows.h */
/* #undef HAVE_WINDOWS_H */
/* Define if we have dlfcn.h */
#define HAVE_DLFCN_H
@@ -173,9 +102,6 @@
/* Define if we have dirent.h */
#define HAVE_DIRENT_H
/* Define if we have strings.h */
#define HAVE_STRINGS_H
/* Define if we have cpuid.h */
#ifndef RASPBERRYPI
#define HAVE_CPUID_H
@@ -193,15 +119,6 @@
/* Define if we have initguid.h */
/* #undef HAVE_INITGUID_H */
/* Define if we have ieeefp.h */
/* #undef HAVE_IEEEFP_H */
/* Define if we have float.h */
#define HAVE_FLOAT_H
/* Define if we have fenv.h */
#define HAVE_FENV_H
/* Define if we have GCC's __get_cpuid() */
#define HAVE_GCC_GET_CPUID
@@ -214,12 +131,6 @@
/* Define if we have the _BitScanForward() intrinsic */
/* #undef HAVE_BITSCANFORWARD_INTRINSIC */
/* Define if we have _controlfp() */
/* #undef HAVE__CONTROLFP */
/* Define if we have __control87_2() */
/* #undef HAVE___CONTROL87_2 */
/* Define if we have pthread_setschedparam() */
#define HAVE_PTHREAD_SETSCHEDPARAM
@@ -234,9 +145,3 @@
/* Define if we have pthread_set_name_np() */
/* #undef HAVE_PTHREAD_SET_NAME_NP */
/* Define if we have pthread_mutexattr_setkind_np() */
/* #undef HAVE_PTHREAD_MUTEXATTR_SETKIND_NP */
/* Define if we have pthread_mutex_timedlock() */
#define HAVE_PTHREAD_MUTEX_TIMEDLOCK

View File

@@ -2,27 +2,12 @@
#define AL_API __attribute__((visibility("default")))
#define ALC_API __attribute__((visibility("default")))
#ifdef IN_IDE_PARSER
/* KDevelop's parser doesn't recognize the C99-standard restrict keyword, but
* recent versions (at least 4.5.1) do recognize GCC's __restrict. */
#define restrict __restrict
#endif
/* Define any available alignment declaration */
#define ALIGN(x) __attribute__((aligned(x)))
/* Define a built-in call indicating an aligned data pointer */
#define ASSUME_ALIGNED(x, y) x
/* Define a restrict macro for non-aliased pointers */
#define RESTRICT __restrict
/* Define if HRTF data is embedded in the library */
#define ALSOFT_EMBED_HRTF_DATA
/* Define if we have the sysconf function */
/* #undef HAVE_SYSCONF */
/* Define if we have the C11 aligned_alloc function */
/* #undef HAVE_ALIGNED_ALLOC */
@@ -95,66 +80,12 @@
/* Define if we have the stat function */
#define HAVE_STAT
/* Define if we have the lrintf function */
#define HAVE_LRINTF
/* Define if we have the modff function */
#define HAVE_MODFF
/* Define if we have the log2f function */
#define HAVE_LOG2F
/* Define if we have the cbrtf function */
#define HAVE_CBRTF
/* Define if we have the copysignf function */
#define HAVE_COPYSIGNF
/* Define if we have the strtof function */
#define HAVE_STRTOF
/* Define if we have the strnlen function */
/* #undef HAVE_STRNLEN */
/* Define if we have the __int64 type */
/* #undef HAVE___INT64 */
/* Define to the size of a long int type */
#define SIZEOF_LONG 8
/* Define to the size of a long long int type */
#define SIZEOF_LONG_LONG 8
/* Define if we have C99 _Bool support */
//#define HAVE_C99_BOOL
/* Define if we have C11 _Static_assert support */
//#define HAVE_C11_STATIC_ASSERT
/* Define if we have C11 _Alignas support */
//#define HAVE_C11_ALIGNAS
/* Define if we have C11 _Atomic support */
//#define HAVE_C11_ATOMIC
/* Define if we have GCC's destructor attribute */
#define HAVE_GCC_DESTRUCTOR
/* Define if we have GCC's format attribute */
#define HAVE_GCC_FORMAT
/* Define if we have stdint.h */
#define HAVE_STDINT_H
/* Define if we have stdbool.h */
#define HAVE_STDBOOL_H
/* Define if we have stdalign.h */
#define HAVE_STDALIGN_H
/* Define if we have windows.h */
/* #undef HAVE_WINDOWS_H */
/* Define if we have dlfcn.h */
#define HAVE_DLFCN_H
@@ -167,9 +98,6 @@
/* Define if we have dirent.h */
#define HAVE_DIRENT_H
/* Define if we have strings.h */
#define HAVE_STRINGS_H
/* Define if we have cpuid.h */
#define HAVE_CPUID_H
@@ -185,15 +113,6 @@
/* Define if we have initguid.h */
/* #undef HAVE_INITGUID_H */
/* Define if we have ieeefp.h */
/* #undef HAVE_IEEEFP_H */
/* Define if we have float.h */
#define HAVE_FLOAT_H
/* Define if we have fenv.h */
#define HAVE_FENV_H
/* Define if we have GCC's __get_cpuid() */
#define HAVE_GCC_GET_CPUID
@@ -206,12 +125,6 @@
/* Define if we have the _BitScanForward() intrinsic */
/* #undef HAVE_BITSCANFORWARD_INTRINSIC */
/* Define if we have _controlfp() */
/* #undef HAVE__CONTROLFP */
/* Define if we have __control87_2() */
/* #undef HAVE___CONTROL87_2 */
/* Define if we have pthread_setschedparam() */
#define HAVE_PTHREAD_SETSCHEDPARAM
@@ -226,9 +139,3 @@
/* Define if we have pthread_set_name_np() */
/* #undef HAVE_PTHREAD_SET_NAME_NP */
/* Define if we have pthread_mutexattr_setkind_np() */
/* #undef HAVE_PTHREAD_MUTEXATTR_SETKIND_NP */
/* Define if we have pthread_mutex_timedlock() */
#define HAVE_PTHREAD_MUTEX_TIMEDLOCK

View File

@@ -2,12 +2,6 @@
#define AL_API __declspec(dllexport)
#define ALC_API __declspec(dllexport)
#ifdef IN_IDE_PARSER
/* KDevelop's parser doesn't recognize the C99-standard restrict keyword, but
* recent versions (at least 4.5.1) do recognize GCC's __restrict. */
#define restrict __restrict
#endif
// #ifndef inline
// #define inline __inline
// #endif
@@ -23,28 +17,12 @@
#define isfinite _finite
#endif
#if _MSC_VER >= 1900
#define HAVE_STRUCT_TIMESPEC
#endif
/* Define any available alignment declaration */
#define ALIGN(x) __declspec(align(x))
/* Define a built-in call indicating an aligned data pointer */
#define ASSUME_ALIGNED(x, y) x
/* Define a restrict macro for non-aliased pointers */
#define RESTRICT __restrict
/* Define if HRTF data is embedded in the library */
#define ALSOFT_EMBED_HRTF_DATA
/* Define if we have the sysconf function */
/* #undef HAVE_SYSCONF */
/* Define if we have the C11 aligned_alloc function */
/* #undef HAVE_ALIGNED_ALLOC */
/* Define if we have the posix_memalign function */
/* #undef HAVE_POSIX_MEMALIGN */
@@ -114,74 +92,12 @@
/* Define if we have the stat function */
#define HAVE_STAT
/* Define if we have the lrintf function */
#if defined(_MSC_VER) && _MSC_VER >=1900
#define HAVE_LRINTF
#endif
/* Define if we have the modff function */
#define HAVE_MODFF
/* Define if we have the log2f function */
/* #undef HAVE_LOG2F */
/* Define if we have the cbrtf function */
/* #undef HAVE_CBRTF */
/* Define if we have the copysignf function */
/* #undef HAVE_COPYSIGNF */
/* Define if we have the strtof function */
#if defined(_MSC_VER) && _MSC_VER >=1900
#define HAVE_STRTOF
#endif
/* Define if we have the strnlen function */
#define HAVE_STRNLEN
/* Define if we have the __int64 type */
/* #undef HAVE___INT64 */
/* Define to the size of a long int type */
#define SIZEOF_LONG 4
/* Define to the size of a long long int type */
#define SIZEOF_LONG_LONG 8
/* Define if we have C99 _Bool support */
#if defined(_MSC_VER) && _MSC_VER >=1900
#define HAVE_C99_BOOL
#endif
/* Define if we have C11 _Static_assert support */
/* #undef HAVE_C11_STATIC_ASSERT */
/* Define if we have C11 _Alignas support */
/* #undef HAVE_C11_ALIGNAS */
/* Define if we have C11 _Atomic support */
/* #undef HAVE_C11_ATOMIC */
/* Define if we have GCC's destructor attribute */
/* #undef HAVE_GCC_DESTRUCTOR */
/* Define if we have GCC's format attribute */
/* #undef HAVE_GCC_FORMAT */
/* Define if we have stdint.h */
#define HAVE_STDINT_H
/* Define if we have stdbool.h */
#if defined(_MSC_VER) && _MSC_VER >=1900
#define HAVE_STDBOOL_H
#endif
/* Define if we have stdalign.h */
/* #undef HAVE_STDALIGN_H */
/* Define if we have windows.h */
#define HAVE_WINDOWS_H
/* Define if we have dlfcn.h */
/* #undef HAVE_DLFCN_H */
@@ -194,9 +110,6 @@
/* Define if we have dirent.h */
/* #undef HAVE_DIRENT_H */
/* Define if we have strings.h */
/* #undef HAVE_STRINGS_H */
/* Define if we have cpuid.h */
/* #undef HAVE_CPUID_H */
@@ -212,17 +125,6 @@
/* Define if we have initguid.h */
/* #undef HAVE_INITGUID_H */
/* Define if we have ieeefp.h */
/* #undef HAVE_IEEEFP_H */
/* Define if we have float.h */
#define HAVE_FLOAT_H
/* Define if we have fenv.h */
#if defined(_MSC_VER) && _MSC_VER >=1900
#undef HAVE_FENV_H
#endif
/* Define if we have GCC's __get_cpuid() */
/* #undef HAVE_GCC_GET_CPUID */
@@ -235,12 +137,6 @@
/* Define if we have the _BitScanForward() intrinsic */
#define HAVE_BITSCANFORWARD_INTRINSIC
/* Define if we have _controlfp() */
#define HAVE__CONTROLFP
/* Define if we have __control87_2() */
#define HAVE___CONTROL87_2
/* Define if we have pthread_setschedparam() */
/* #undef HAVE_PTHREAD_SETSCHEDPARAM */
@@ -255,9 +151,3 @@
/* Define if we have pthread_set_name_np() */
/* #undef HAVE_PTHREAD_SET_NAME_NP */
/* Define if we have pthread_mutexattr_setkind_np() */
/* #undef HAVE_PTHREAD_MUTEXATTR_SETKIND_NP */
/* Define if we have pthread_mutex_timedlock() */
/* #undef HAVE_PTHREAD_MUTEX_TIMEDLOCK */

View File

@@ -2,34 +2,12 @@
#define AL_API __declspec(dllexport)
#define ALC_API __declspec(dllexport)
#ifdef IN_IDE_PARSER
/* KDevelop's parser doesn't recognize the C99-standard restrict keyword, but
* recent versions (at least 4.5.1) do recognize GCC's __restrict. */
#define restrict __restrict
#endif
#if _MSC_VER >= 1900
#define HAVE_STRUCT_TIMESPEC
#endif
/* Define any available alignment declaration */
#define ALIGN(x) __declspec(align(x))
/* Define a built-in call indicating an aligned data pointer */
#define ASSUME_ALIGNED(x, y) x
/* Define a restrict macro for non-aliased pointers */
#define RESTRICT __restrict
/* Define if HRTF data is embedded in the library */
#define ALSOFT_EMBED_HRTF_DATA
/* Define if we have the sysconf function */
/* #undef HAVE_SYSCONF */
/* Define if we have the C11 aligned_alloc function */
/* #undef HAVE_ALIGNED_ALLOC */
/* Define if we have the posix_memalign function */
/* #undef HAVE_POSIX_MEMALIGN */
@@ -99,66 +77,12 @@
/* Define if we have the stat function */
#define HAVE_STAT
/* Define if we have the lrintf function */
#define HAVE_LRINTF
/* Define if we have the modff function */
#define HAVE_MODFF
/* Define if we have the log2f function */
#define HAVE_LOG2F
/* Define if we have the cbrtf function */
#define HAVE_CBRTF
/* Define if we have the copysignf function */
#define HAVE_COPYSIGNF
/* Define if we have the strtof function */
#define HAVE_STRTOF
/* Define if we have the strnlen function */
#define HAVE_STRNLEN
/* Define if we have the __int64 type */
/* #undef HAVE___INT64 */
/* Define to the size of a long int type */
#define SIZEOF_LONG 4
/* Define to the size of a long long int type */
#define SIZEOF_LONG_LONG 8
/* Define if we have C99 _Bool support */
#define HAVE_C99_BOOL
/* Define if we have C11 _Static_assert support */
/* #undef HAVE_C11_STATIC_ASSERT */
/* Define if we have C11 _Alignas support */
/* #undef HAVE_C11_ALIGNAS */
/* Define if we have C11 _Atomic support */
/* #undef HAVE_C11_ATOMIC */
/* Define if we have GCC's destructor attribute */
/* #undef HAVE_GCC_DESTRUCTOR */
/* Define if we have GCC's format attribute */
/* #undef HAVE_GCC_FORMAT */
/* Define if we have stdint.h */
#define HAVE_STDINT_H
/* Define if we have stdbool.h */
#define HAVE_STDBOOL_H
/* Define if we have stdalign.h */
/* #undef HAVE_STDALIGN_H */
/* Define if we have windows.h */
#define HAVE_WINDOWS_H
/* Define if we have dlfcn.h */
/* #undef HAVE_DLFCN_H */
@@ -171,9 +95,6 @@
/* Define if we have dirent.h */
/* #undef HAVE_DIRENT_H */
/* Define if we have strings.h */
/* #undef HAVE_STRINGS_H */
/* Define if we have cpuid.h */
/* #undef HAVE_CPUID_H */
@@ -189,15 +110,6 @@
/* Define if we have initguid.h */
/* #undef HAVE_INITGUID_H */
/* Define if we have ieeefp.h */
/* #undef HAVE_IEEEFP_H */
/* Define if we have float.h */
#define HAVE_FLOAT_H
/* Define if we have fenv.h */
#define HAVE_FENV_H
/* Define if we have GCC's __get_cpuid() */
/* #undef HAVE_GCC_GET_CPUID */
@@ -210,12 +122,6 @@
/* Define if we have the _BitScanForward() intrinsic */
#define HAVE_BITSCANFORWARD_INTRINSIC
/* Define if we have _controlfp() */
#define HAVE__CONTROLFP
/* Define if we have __control87_2() */
/* #undef HAVE___CONTROL87_2 */
/* Define if we have pthread_setschedparam() */
/* #undef HAVE_PTHREAD_SETSCHEDPARAM */
@@ -230,9 +136,3 @@
/* Define if we have pthread_set_name_np() */
/* #undef HAVE_PTHREAD_SET_NAME_NP */
/* Define if we have pthread_mutexattr_setkind_np() */
/* #undef HAVE_PTHREAD_MUTEXATTR_SETKIND_NP */
/* Define if we have pthread_mutex_timedlock() */
/* #undef HAVE_PTHREAD_MUTEX_TIMEDLOCK */