You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

142 lines
3.0 KiB

  1. --- a/src/seq/seq.c
  2. +++ b/src/seq/seq.c
  3. @@ -777,7 +777,7 @@ void event_filter(snd_seq_t *seq, snd_se
  4. */
  5. -#include <sys/poll.h>
  6. +#include <poll.h>
  7. #include "seq_local.h"
  8. /****************************************************************************
  9. --- a/aserver/aserver.c
  10. +++ b/aserver/aserver.c
  11. @@ -20,7 +20,7 @@
  12. #include <sys/shm.h>
  13. #include <sys/socket.h>
  14. -#include <sys/poll.h>
  15. +#include <poll.h>
  16. #include <sys/un.h>
  17. #include <sys/uio.h>
  18. #include <stdio.h>
  19. --- a/include/asoundlib-head.h
  20. +++ b/include/asoundlib-head.h
  21. @@ -35,6 +35,6 @@
  22. #include <string.h>
  23. #include <fcntl.h>
  24. #include <assert.h>
  25. -#include <sys/poll.h>
  26. +#include <poll.h>
  27. #include <errno.h>
  28. #include <stdarg.h>
  29. --- a/include/asoundlib.h
  30. +++ b/include/asoundlib.h
  31. @@ -35,7 +35,7 @@
  32. #include <string.h>
  33. #include <fcntl.h>
  34. #include <assert.h>
  35. -#include <sys/poll.h>
  36. +#include <poll.h>
  37. #include <errno.h>
  38. #include <stdarg.h>
  39. #include <endian.h>
  40. --- a/include/local.h
  41. +++ b/include/local.h
  42. @@ -47,7 +47,7 @@
  43. #error Header defining endianness not defined
  44. #endif
  45. #include <stdarg.h>
  46. -#include <sys/poll.h>
  47. +#include <poll.h>
  48. #include <sys/types.h>
  49. #include <errno.h>
  50. #include <linux/types.h>
  51. --- a/src/control/control.c
  52. +++ b/src/control/control.c
  53. @@ -48,7 +48,7 @@ and IEC958 structure.
  54. #include <string.h>
  55. #include <fcntl.h>
  56. #include <signal.h>
  57. -#include <sys/poll.h>
  58. +#include <poll.h>
  59. #include "control_local.h"
  60. /**
  61. --- a/src/control/control_shm.c
  62. +++ b/src/control/control_shm.c
  63. @@ -27,7 +27,7 @@
  64. #include <fcntl.h>
  65. #include <sys/shm.h>
  66. #include <sys/socket.h>
  67. -#include <sys/poll.h>
  68. +#include <poll.h>
  69. #include <sys/un.h>
  70. #include <sys/uio.h>
  71. #include <sys/mman.h>
  72. --- a/src/pcm/pcm.c
  73. +++ b/src/pcm/pcm.c
  74. @@ -634,7 +634,7 @@ playback devices.
  75. #include <stdarg.h>
  76. #include <signal.h>
  77. #include <ctype.h>
  78. -#include <sys/poll.h>
  79. +#include <poll.h>
  80. #include <sys/mman.h>
  81. #include <limits.h>
  82. #include "pcm_local.h"
  83. --- a/src/pcm/pcm_direct.c
  84. +++ b/src/pcm/pcm_direct.c
  85. @@ -30,7 +30,7 @@
  86. #include <grp.h>
  87. #include <sys/ioctl.h>
  88. #include <sys/mman.h>
  89. -#include <sys/poll.h>
  90. +#include <poll.h>
  91. #include <sys/shm.h>
  92. #include <sys/sem.h>
  93. #include <sys/wait.h>
  94. --- a/src/pcm/pcm_mmap.c
  95. +++ b/src/pcm/pcm_mmap.c
  96. @@ -21,7 +21,7 @@
  97. #include <stdio.h>
  98. #include <malloc.h>
  99. #include <string.h>
  100. -#include <sys/poll.h>
  101. +#include <poll.h>
  102. #include <sys/mman.h>
  103. #include <sys/shm.h>
  104. #include "pcm_local.h"
  105. --- a/src/pcm/pcm_share.c
  106. +++ b/src/pcm/pcm_share.c
  107. @@ -34,7 +34,7 @@
  108. #include <signal.h>
  109. #include <math.h>
  110. #include <sys/socket.h>
  111. -#include <sys/poll.h>
  112. +#include <poll.h>
  113. #include <pthread.h>
  114. #include "pcm_local.h"
  115. --- a/src/pcm/pcm_shm.c
  116. +++ b/src/pcm/pcm_shm.c
  117. @@ -36,7 +36,7 @@
  118. #include <sys/ioctl.h>
  119. #include <sys/shm.h>
  120. #include <sys/socket.h>
  121. -#include <sys/poll.h>
  122. +#include <poll.h>
  123. #include <sys/un.h>
  124. #include <sys/mman.h>
  125. #include <netinet/in.h>
  126. --- a/src/shmarea.c
  127. +++ b/src/shmarea.c
  128. @@ -22,7 +22,7 @@
  129. #include <malloc.h>
  130. #include <string.h>
  131. #include <errno.h>
  132. -#include <sys/poll.h>
  133. +#include <poll.h>
  134. #include <sys/mman.h>
  135. #include <sys/shm.h>
  136. #include "list.h"