mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-31 22:25:35 -04:00
Old development environment doesn't necessarily contain the headers defining __kernel_long_t that is recently used for y2038 timespec conditional. Define it explicitly in such a case. Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 lines
237 B
C
11 lines
237 B
C
/* workaround for building with old glibc / kernel headers */
|
|
#ifdef __linux__
|
|
#include <linux/types.h>
|
|
#else
|
|
#include <sys/types.h>
|
|
#endif
|
|
#ifndef __kernel_long_t
|
|
#define __kernel_long_t long
|
|
#endif
|
|
|
|
#include <alsa/sound/uapi/asound.h>
|