Compilation problem caused by conflicting typedefs for uint32_t
(unsigned long vs. unsigned int).
This commit is contained in:
parent
1c08bb95b7
commit
0d2f498a4c
@ -28,7 +28,9 @@
|
|||||||
#if defined(linux)
|
#if defined(linux)
|
||||||
#include <linux/soundcard.h>
|
#include <linux/soundcard.h>
|
||||||
|
|
||||||
|
#ifndef HAVE_STDINT_H
|
||||||
typedef unsigned long uint32_t;
|
typedef unsigned long uint32_t;
|
||||||
|
#endif
|
||||||
|
|
||||||
#elif defined(__FreeBSD__)
|
#elif defined(__FreeBSD__)
|
||||||
#include <machine/soundcard.h>
|
#include <machine/soundcard.h>
|
||||||
|
@ -34,7 +34,9 @@
|
|||||||
|
|
||||||
#if defined(linux)
|
#if defined(linux)
|
||||||
|
|
||||||
|
#ifndef HAVE_STDINT_H
|
||||||
typedef unsigned long uint32_t;
|
typedef unsigned long uint32_t;
|
||||||
|
#endif
|
||||||
|
|
||||||
#elif defined(__FreeBSD__)
|
#elif defined(__FreeBSD__)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user