Advertisement
Guest User

Untitled

a guest
Feb 6th, 2019
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.13 KB | None | 0 0
  1. └───╼ LC_ALL=C makepkg
  2. ==> Making package: rsound 1.1-3 (Wed Feb 6 16:35:05 2019)
  3. ==> Checking runtime dependencies...
  4. ==> Checking buildtime dependencies...
  5. ==> Retrieving sources...
  6. -> Found v1.1.tar.gz
  7. ==> Validating source files with sha256sums...
  8. v1.1.tar.gz ... Passed
  9. ==> Removing existing $srcdir/ directory...
  10. ==> Extracting sources...
  11. -> Extracting v1.1.tar.gz with bsdtar
  12. ==> Removing existing $pkgdir/ directory...
  13. ==> Starting build()...
  14. Checking for availability of switch -std=gnu99 ... yes
  15. Checking for availability of switch -std=c99 ... yes
  16. Checking for availability of switch -Wextra ... yes
  17. Checking function pthread_create in -lpthread ... yes
  18. Checking function snd_pcm_open in -lasound ... yes
  19. Checking presence of header file sys/soundcard.h ... yes
  20. Checking presence of header file soundcard.h ... no
  21. Checking function _oss_ioctl in -lossaudio ... no
  22. Checking function ao_open_live in -lao ... yes
  23. Checking function roar_vs_new in -lroar ... no
  24. Checking function pa_simple_new in -lpulse-simple ... yes
  25. Checking function muroar_stream in -lmuroar ... no
  26. Checking function alcOpenDevice in -lopenal ... yes
  27. Checking function Pa_OpenStream in -lportaudio ... yes
  28. Checking function jack_client_open in -ljack ... yes
  29. Checking function src_callback_new in -lsamplerate ... yes
  30. Checking function openlog in -lc ... yes
  31. Checking function clock_gettime in -lrt ... yes
  32. Checking function dnet_conn in -ldnet ... no
  33.  
  34.  
  35. ============================
  36. Configuration successful.
  37. ============================
  38. ALSA: yes
  39. OSS: yes
  40. libAO: yes
  41. PortAudio: yes
  42. JACK: yes
  43. Roar VS: no
  44. OpenAL: yes
  45. muRoar: no
  46. PulseAudio: yes
  47. libsamplerate: yes
  48. syslog: yes
  49.  
  50. Prefix: /usr
  51. CC: cc
  52. CFLAGS: -march=native -O2 -pipe -fno-plt -std=gnu99 -Wall -Wextra
  53.  
  54. :: Type 'make' to compile ('gmake' for BSD systems).
  55. make[1]: Entering directory '/tmp/makepkg/rsound/src/RSound-1.1/src'
  56. CC librsound/librsound.c
  57. CC librsound/buffer.c
  58. CC client.c
  59. CC endian.c
  60. CC drivers/alsa.c
  61. CC drivers/oss.c
  62. CC drivers/ao.c
  63. CC drivers/pulse.c
  64. CC drivers/al.c
  65. CC drivers/porta.c
  66. CC drivers/jack.c
  67. CC audio.c
  68. CC daemon.c
  69. CC rsound-common.c
  70. CC proto.c
  71. drivers/jack.c: In function 'jack_get_backend':
  72. drivers/jack.c:244:4: warning: 'jack_port_get_total_latency' is deprecated [-Wdeprecated-declarations]
  73. backend_info->latency = jack_port_get_total_latency(jd->client, jd->ports[0]) * jd->channels * rsnd_format_to_bytes(jd->format);
  74. ^~~~~~~~~~~~
  75. In file included from drivers/jack.h:22,
  76. from drivers/jack.c:16:
  77. /usr/include/jack/jack.h:1238:16: note: declared here
  78. jack_nframes_t jack_port_get_total_latency (jack_client_t *client,
  79. ^~~~~~~~~~~~~~~~~~~~~~~~~~~
  80. drivers/jack.c: In function 'jack_latency':
  81. drivers/jack.c:250:4: warning: 'jack_port_get_total_latency' is deprecated [-Wdeprecated-declarations]
  82. jack_nframes_t frames = jack_port_get_total_latency(jd->client, jd->ports[0]) + jack_ringbuffer_read_space(jd->buffer[0]) / sizeof(jack_default_audio_sample_t);
  83. ^~~~~~~~~~~~~~
  84. In file included from drivers/jack.h:22,
  85. from drivers/jack.c:16:
  86. /usr/include/jack/jack.h:1238:16: note: declared here
  87. jack_nframes_t jack_port_get_total_latency (jack_client_t *client,
  88. ^~~~~~~~~~~~~~~~~~~~~~~~~~~
  89. audio.c: In function 'converter_fmt_to_s16ne':
  90. audio.c:430:21: warning: this statement may fall through [-Wimplicit-fallthrough=]
  91. conversion |= RSD_S32_TO_S16;
  92. ~~~~~~~~~~~^~~~~~~~~~~~~~~~~
  93. audio.c:431:7: note: here
  94. case RSD_S16_LE:
  95. ^~~~
  96. audio.c:436:21: warning: this statement may fall through [-Wimplicit-fallthrough=]
  97. conversion |= RSD_S32_TO_S16;
  98. ~~~~~~~~~~~^~~~~~~~~~~~~~~~~
  99. audio.c:437:7: note: here
  100. case RSD_S16_BE:
  101. ^~~~
  102. audio.c:442:21: warning: this statement may fall through [-Wimplicit-fallthrough=]
  103. conversion |= RSD_S32_TO_S16;
  104. ~~~~~~~~~~~^~~~~~~~~~~~~~~~~
  105. audio.c:443:7: note: here
  106. case RSD_U16_LE:
  107. ^~~~
  108. audio.c:449:21: warning: this statement may fall through [-Wimplicit-fallthrough=]
  109. conversion |= RSD_S32_TO_S16;
  110. ~~~~~~~~~~~^~~~~~~~~~~~~~~~~
  111. audio.c:450:7: note: here
  112. case RSD_U16_BE:
  113. ^~~~
  114. audio.c:456:21: warning: this statement may fall through [-Wimplicit-fallthrough=]
  115. conversion |= RSD_U_TO_S;
  116. ~~~~~~~~~~~^~~~~~~~~~~~~
  117. audio.c:457:7: note: here
  118. case RSD_S8:
  119. ^~~~
  120. proto.c: In function 'send_proto.part.0':
  121. proto.c:222:61: warning: '%s' directive output may be truncated writing up to 255 bytes into a region of size 247 [-Wformat-truncation=]
  122. snprintf(sendbuf, RSD_PROTO_MAXSIZE - 1, "RSD%5d%s", (int)strlen(tempbuf), tempbuf);
  123. ^~ ~~~~~~~
  124. proto.c:222:13: note: 'snprintf' output between 9 and 264 bytes into a destination of size 255
  125. snprintf(sendbuf, RSD_PROTO_MAXSIZE - 1, "RSD%5d%s", (int)strlen(tempbuf), tempbuf);
  126. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  127. rsound-common.c: In function 'log_printf':
  128. rsound-common.c:169:7: warning: 'strncpy' specified bound depends on the length of the source argument [-Wstringop-overflow=]
  129. strncpy(tmp_fmt, fmt, sizeof(tmp_fmt));
  130. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  131. rsound-common.c:168:20: note: length computed here
  132. char tmp_fmt[strlen(fmt) + 1];
  133. ^~~~~~~~~~~
  134. librsound/librsound.c: In function 'rsnd_send_info_query':
  135. librsound/librsound.c:1085:52: warning: '%s' directive output may be truncated writing up to 255 bytes into a region of size 247 [-Wformat-truncation=]
  136. snprintf(sendbuf, RSD_PROTO_MAXSIZE - 1, "RSD%5d%s", (int)strlen(tmpbuf), tmpbuf);
  137. ^~ ~~~~~~
  138. librsound/librsound.c:1085:4: note: 'snprintf' output between 9 and 264 bytes into a destination of size 255
  139. snprintf(sendbuf, RSD_PROTO_MAXSIZE - 1, "RSD%5d%s", (int)strlen(tmpbuf), tmpbuf);
  140. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  141. librsound/librsound.c: In function 'rsnd_send_identity_info':
  142. librsound/librsound.c:995:55: warning: '%s' directive output may be truncated writing up to 255 bytes into a region of size 245 [-Wformat-truncation=]
  143. snprintf(tmpbuf, RSD_PROTO_MAXSIZE - 1, " IDENTITY %s", rd->identity);
  144. ^~
  145. librsound/librsound.c:995:4: note: 'snprintf' output between 11 and 266 bytes into a destination of size 255
  146. snprintf(tmpbuf, RSD_PROTO_MAXSIZE - 1, " IDENTITY %s", rd->identity);
  147. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  148. librsound/librsound.c:997:52: warning: '%s' directive output may be truncated writing up to 255 bytes into a region of size 247 [-Wformat-truncation=]
  149. snprintf(sendbuf, RSD_PROTO_MAXSIZE - 1, "RSD%5d%s", (int)strlen(tmpbuf), tmpbuf);
  150. ^~ ~~~~~~
  151. librsound/librsound.c:997:4: note: 'snprintf' output between 9 and 264 bytes into a destination of size 255
  152. snprintf(sendbuf, RSD_PROTO_MAXSIZE - 1, "RSD%5d%s", (int)strlen(tmpbuf), tmpbuf);
  153. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  154. LD rsd
  155. AR librsound/librsound.a
  156. LD librsound/librsound.so.3.0.0
  157. LD rsdplay
  158. make[1]: Leaving directory '/tmp/makepkg/rsound/src/RSound-1.1/src'
  159. ==> Entering fakeroot environment...
  160. ==> Starting package()...
  161. make[1]: Entering directory '/tmp/makepkg/rsound/src/RSound-1.1/src'
  162. mkdir -p /tmp/makepkg/rsound/pkg/rsound/usr/bin
  163. mkdir -p /tmp/makepkg/rsound/pkg/rsound/usr/bin
  164. install -m755 rsd /tmp/makepkg/rsound/pkg/rsound/usr/bin
  165. install -m755 rsdplay /tmp/makepkg/rsound/pkg/rsound/usr/bin
  166. mkdir -p /tmp/makepkg/rsound/pkg/rsound/usr/{lib/pkgconfig,include,share/man/man1}
  167. install -m755 librsound/librsound.so.3.0.0 /tmp/makepkg/rsound/pkg/rsound/usr/lib
  168. cp -P librsound/librsound.so librsound/librsound.so.3 /tmp/makepkg/rsound/pkg/rsound/usr/lib
  169. install -m644 librsound/librsound.a /tmp/makepkg/rsound/pkg/rsound/usr/lib
  170. install -m644 librsound/rsound.h /tmp/makepkg/rsound/pkg/rsound/usr/include
  171. install -m644 rsound.pc /tmp/makepkg/rsound/pkg/rsound/usr/lib/pkgconfig
  172. install -m644 ../doc/rsd.1 /tmp/makepkg/rsound/pkg/rsound/usr/share/man/man1
  173. install -m644 ../doc/rsdplay.1 /tmp/makepkg/rsound/pkg/rsound/usr/share/man/man1
  174. make[1]: Leaving directory '/tmp/makepkg/rsound/src/RSound-1.1/src'
  175. ==> Tidying install...
  176. -> Removing libtool files...
  177. -> Purging unwanted files...
  178. -> Removing static library files...
  179. -> Stripping unneeded symbols from binaries and libraries...
  180. -> Compressing man and info pages...
  181. ==> Checking for packaging issues...
  182. ==> Creating package "rsound"...
  183. -> Generating .PKGINFO file...
  184. -> Generating .BUILDINFO file...
  185. -> Generating .MTREE file...
  186. -> Compressing package...
  187. ==> Leaving fakeroot environment.
  188. ==> Finished making: rsound 1.1-3 (Wed Feb 6 16:35:08 2019)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement