-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
Copy pathdune
1061 lines (1004 loc) · 20 KB
/
dune
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(env
(release
(ocamlopt_flags
(:standard -w -9 -alert --deprecated -O2)))
(_
(flags
(:standard -w -9 -alert --deprecated))))
(include_subdirs unqualified)
(rule
(target liquidsoap_paths.ml)
(action
(copy liquidsoap_paths.%{env:LIQUIDSOAP_BUILD_TARGET=default}.ml %{target})))
(rule
(target clock_ready.ml)
(enabled_if (>= %{ocaml_version} 5))
(action
(copy clock_ready.await.ml %{target})))
(rule
(target clock_ready.ml)
(enabled_if (< %{ocaml_version} 5))
(action
(copy clock_ready.blocking.ml %{target})))
(library
(name liquidsoap_core)
(preprocess
(pps ppx_string))
(libraries
mm
dtools
dune-build-info
duppy
fileutils
liquidsoap-lang
liquidsoap-lang.console
menhirLib
moonpool
camomile.lib
curl
cry
re
uri
saturn_lockfree
metadata
magic-mime
(select
file_watcher.ml
from
(inotify -> file_watcher.inotify.ml)
(-> file_watcher.mtime.ml)))
(foreign_stubs
(language c)
(names unix_c defer_c))
(wrapped false)
(library_flags -linkall)
(modules
aFrame
accelerate
add
amplify
annotate
audio_converter
audio_gen
available
avi
avi_encoder
avi_format
biquad_filter
blank
charset_base
charset
child_support
chord
clip
clock
clock_ready
comb
compand
compress
compress_exp
content
content_audio
content_pcm_base
content_pcm_f32
content_pcm_s16
content_base
content_midi
content_timed
content_video
conversion
configure
cross
debug_sources
decoder
decoder_utils
defer
delay
delay_line
doc
dtmf
dyn_op
echo
encoder
encoder_formats
encoder_utils
error
external_decoder
external_encoder
external_encoder_format
external_input
external_input_audio
external_input_video
extralib
extra_args
fdkaac_format
ffmpeg_format
file_watcher
filter
filter_rc
fir_filter
flac_format
flac_metadata_plug
flanger
frame
frame_base
frame_settings
frame_type
format_type
gate
generated
generator
gstreamer_format
harbor
harbor_base
harbor_input
harbor_output
hooks_implementations
hls_output
http
icecast_utils
icecast2
id3_plug
iir_filter
image_decoder
image_plug
insert_metadata
ioRing
json
keyboard
lang
lang_avi
lang_encoder
lang_external_encoder
lang_fdkaac
lang_flac
lang_gstreamer
lang_mp3
lang_ogg
lang_opus
lang_source
lang_shine
lang_speex
lang_string
lang_theora
lang_vorbis
lang_wav
latest_metadata
liqcurl
lifecycle
liq_time
liquidsoap_paths
log
lufs
mFrame
map_metadata
map_op
max_duration
mean
merge_metadata
metadata_base
midi_decoder
midi_routing
midimeter
modules
mp3_format
mpd
ms_stereo
muxer
native_audio_converter
native_video_converter
noblank
noise
normalize
ogg_format
ogg_metadata_plug
on_end
on_frame
on_metadata
on_offset
on_track
opus_format
output
pan
pipe
pipe_output
pitch
playlist_parser
plug
pool
pos
ppm_decoder
process_handler
producer_consumer
raw_audio_decoder
replaygain_op
request
request_dynamic
resample
rms_smooth
rqueue
runtime_error
sandbox
sequence
server
server_builtins
sha1
shebang
shine_format
source
speex_format
srt_decoder
srt_parser
start_stop
startup
stereo
still_frame
stringView
strings
swap
switch
synth_op
synthesized
term
theora_format
time_warp
track
track_map
tutils
type
typing
unifier
udp_io
utils
value
vFrame
video_board
video_converter
video_effects
video_fade
video_plug
video_testsrc
video_text
video_text_native
video_volume
vorbis_format
wav_aiff
wav_aiff_decoder
wav_encoder
wav_format
websocket
window_op))
(library
(name liquidsoap_builtins)
(library_flags -linkall)
(preprocess
(pps ppx_string))
(wrapped false)
(libraries liquidsoap_core)
(modules
builtins_callbacks
builtins_clock
builtins_cry
builtins_files
builtins_harbor
builtins_http
builtins_metadata
builtins_process
builtins_request
builtins_resolvers
playlist_basic
builtins_runtime
builtins_server
builtins_settings
builtins_socket
builtins_source
builtins_string_extra
builtins_sys
builtins_thread
builtins_time))
(library
(name liquidsoap_alsa)
(libraries alsa liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules alsa_in alsa_out alsa_io alsa_settings))
(library
(name liquidsoap_ao)
(libraries ao liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules ao_out))
(library
(name liquidsoap_bjack)
(libraries bjack liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules bjack_in bjack_out))
(library
(name liquidsoap_camlimages)
(libraries camlimages.all_formats liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules camlimages_decoder))
(library
(name liquidsoap_mem_usage)
(libraries mem_usage liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules builtins_mem_usage))
(library
(name liquidsoap_memtrace)
(libraries memtrace liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules liqmemtrace))
(library
(name liquidsoap_dssi)
(libraries dssi liquidsoap_ladspa liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules dssi_op))
(library
(name liquidsoap_faad)
(libraries faad liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules aac_decoder))
(library
(name liquidsoap_fdkaac)
(libraries fdkaac liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules fdkaac_encoder))
(library
(name liquidsoap_ffmpeg)
(libraries
ffmpeg-avutil
ffmpeg-avcodec
ffmpeg-avfilter
ffmpeg-avdevice
ffmpeg-swscale
ffmpeg-swresample
ffmpeg-av
liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules
builtins_ffmpeg_base
builtins_ffmpeg_bitstream_filters
builtins_ffmpeg_decoder
builtins_ffmpeg_filters
builtins_ffmpeg_encoder
ffmpeg_avfilter_utils
ffmpeg_audio_converter
ffmpeg_content_base
ffmpeg_copy_content
ffmpeg_copy_decoder
ffmpeg_copy_encoder
ffmpeg_decoder
ffmpeg_decoder_common
ffmpeg_image_decoder
ffmpeg_encoder
ffmpeg_encoder_common
ffmpeg_filter_io
ffmpeg_internal_decoder
ffmpeg_internal_encoder
ffmpeg_io
ffmpeg_raw_content
ffmpeg_raw_decoder
ffmpeg_utils
ffmpeg_video_converter
lang_ffmpeg))
(library
(name liquidsoap_flac)
(libraries flac liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules liq_flac_decoder flac_encoder))
(library
(name liquidsoap_ogg_flac)
(libraries flac.ogg flac.decoder liquidsoap_core liquidsoap_ogg)
(library_flags -linkall)
(wrapped false)
(optional)
(foreign_stubs
(language c)
(names ogg_flac_encoder_stubs))
(modules liq_flac_ogg_decoder ogg_flac_encoder ogg_flac_duration))
(library
(name liquidsoap_frei0r)
(libraries frei0r liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules frei0r_op))
(library
(name liquidsoap_gd)
(libraries gd liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules video_text_gd))
(library
(name liquidsoap_graphics)
(libraries graphics liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules graphics_out))
(library
(name liquidsoap_gstreamer)
(libraries gstreamer liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules
gstreamer_decoder
video_text_gstreamer
gstreamer_encoder
gstreamer_io
gstreamer_utils))
(library
(name liquidsoap_irc)
(libraries irc-client-unix liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules builtins_irc))
(library
(name liquidsoap_jemalloc)
(libraries jemalloc liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules builtins_jemalloc))
(library
(name liquidsoap_ladspa)
(libraries ladspa liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules ladspa_op))
(library
(name liquidsoap_lame)
(libraries lame liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules lame_encoder))
(library
(name liquidsoap_lastfm)
(libraries lastfm liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules builtins_lastfm liqfm))
(library
(name liquidsoap_lilv)
(libraries lilv liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules lilv_op))
(library
(name liquidsoap_lo)
(libraries lo liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules builtins_lo))
(library
(name liquidsoap_mad)
(libraries mad liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules mad_decoder))
(library
(name liquidsoap_ogg)
(libraries ogg ogg.decoder liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules ogg_muxer ogg_encoder liq_ogg_decoder))
(library
(name liquidsoap_opus)
(libraries opus opus.decoder liquidsoap_core liquidsoap_ogg)
(library_flags -linkall)
(wrapped false)
(optional)
(modules liq_opus_decoder opus_encoder))
(library
(name liquidsoap_osc)
(libraries osc-unix liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules builtins_osc))
(library
(name liquidsoap_oss)
(libraries liquidsoap_core)
(enabled_if
(= "linux" %{system}))
(library_flags -linkall)
(wrapped false)
(optional)
(foreign_stubs
(language c)
(names oss_io_c))
(modules oss_io))
(library
(name liquidsoap_portaudio)
(libraries portaudio liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules portaudio_io))
(library
(name liquidsoap_posix_time)
(libraries posix-time2 liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules liq_posix_time))
(library
(name liquidsoap_prometheus)
(libraries cohttp-lwt-unix prometheus-app liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules liq_prometheus builtins_prometheus))
(library
(name liquidsoap_pulseaudio)
(libraries pulseaudio liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules pulseaudio_io))
(library
(name liquidsoap_samplerate)
(libraries samplerate liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules libsamplerate_converter))
(library
(name liquidsoap_sdl_log_level)
(libraries tsdl)
(library_flags -linkall)
(wrapped false)
(optional)
(modules sdl_log_level))
(library
(name liquidsoap_sdl)
(libraries liquidsoap_sdl_log_level tsdl-image tsdl-ttf liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules sdlimage_decoder video_text_sdl sdl_out keyboard_sdl sdl_utils))
(library
(name liquidsoap_imagelib)
(libraries imagelib imagelib.unix liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules imagelib_decoder))
(library
(name liquidsoap_shine)
(libraries shine liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules shine_encoder))
(library
(name liquidsoap_soundtouch)
(libraries soundtouch liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules soundtouch_op st_bpm))
(library
(name liquidsoap_speex)
(libraries speex speex.decoder liquidsoap_core liquidsoap_ogg)
(library_flags -linkall)
(wrapped false)
(optional)
(modules liq_speex_decoder speex_encoder))
(library
(name liquidsoap_srt)
(libraries srt liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules builtins_srt srt_io))
(library
(name liquidsoap_ssl)
(libraries ssl liquidsoap_core liquidsoap_builtins)
(library_flags -linkall)
(wrapped false)
(optional)
(modules ssl_base builtins_ssl))
(library
(name liquidsoap_stereotool)
(libraries stereotool liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules stereotool_op))
(library
(name liquidsoap_taglib)
(libraries taglib liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules taglib_plug taglib_id3v2))
(library
(name liquidsoap_theora)
(libraries theora theora.decoder liquidsoap_core liquidsoap_ogg)
(library_flags -linkall)
(wrapped false)
(optional)
(modules liq_theora_decoder theora_encoder))
(library
(name liquidsoap_tls)
(libraries
tls
ca-certs
mirage-crypto-rng.unix
cstruct
liquidsoap_core
liquidsoap_builtins)
(library_flags -linkall)
(wrapped false)
(optional)
(modules builtins_tls))
(library
(name liquidsoap_vorbis)
(libraries vorbis vorbis.decoder liquidsoap_core liquidsoap_ogg)
(library_flags -linkall)
(wrapped false)
(optional)
(modules liq_vorbis_decoder vorbis_encoder vorbisduration))
(library
(name liquidsoap_sqlite)
(libraries sqlite3 liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules builtins_sqlite))
(library
(name liquidsoap_yaml)
(libraries yaml liquidsoap_core)
(library_flags -linkall)
(wrapped false)
(optional)
(modules builtins_yaml))
(library
(name liquidsoap_xmlplaylist)
(libraries xmlplaylist liquidsoap_core liquidsoap_builtins)
(library_flags -linkall)
(wrapped false)
(optional)
(modules playlist_xml))
(copy_files ../config/*.ml)
(library
(name liquidsoap_optionals)
(library_flags -linkall)
(preprocess
(pps ppx_string))
(wrapped false)
(modules
alsa_option
ao_option
bjack_option
builtins_optionals
camlimages_option
dssi_option
faad_option
fdkaac_option
ffmpeg_option
flac_option
ogg_flac_option
frei0r_option
gd_option
graphics_option
gstreamer_option
imagelib_option
inotify_option
irc_option
jemalloc_option
ladspa_option
lame_option
lastfm_option
lilv_option
lo_option
mad_option
mem_usage_option
memtrace_option
ogg_option
opus_option
osc_option
oss_option
portaudio_option
posix_time_option
prometheus_option
pulseaudio_option
samplerate_option
sdl_option
shine_option
soundtouch_option
speex_option
srt_option
ssl_option
stereotool_option
sqlite3_option
taglib_option
theora_option
tls_option
vorbis_option
winsvc_option
yaml_option
xmlplaylist_option)
(libraries
liquidsoap_core
(select
alsa_option.ml
from
(liquidsoap_alsa -> alsa_option.enabled.ml)
(-> alsa_option.disabled.ml))
(select
ao_option.ml
from
(liquidsoap_ao -> ao_option.enabled.ml)
(-> ao_option.disabled.ml))
(select
bjack_option.ml
from
(liquidsoap_bjack -> bjack_option.enabled.ml)
(-> bjack_option.disabled.ml))
(select
camlimages_option.ml
from
(liquidsoap_camlimages -> camlimages_option.enabled.ml)
(-> camlimages_option.disabled.ml))
(select
dssi_option.ml
from
(liquidsoap_dssi -> dssi_option.enabled.ml)
(-> dssi_option.disabled.ml))
(select
faad_option.ml
from
(liquidsoap_faad -> faad_option.enabled.ml)
(-> faad_option.disabled.ml))
(select
fdkaac_option.ml
from
(liquidsoap_fdkaac -> fdkaac_option.enabled.ml)
(-> fdkaac_option.disabled.ml))
(select
ffmpeg_option.ml
from
(liquidsoap_ffmpeg -> ffmpeg_option.enabled.ml)
(-> ffmpeg_option.disabled.ml))
(select
flac_option.ml
from
(liquidsoap_flac -> flac_option.enabled.ml)
(-> flac_option.disabled.ml))
(select
ogg_flac_option.ml
from
(liquidsoap_ogg_flac -> ogg_flac_option.enabled.ml)
(-> ogg_flac_option.disabled.ml))
(select
frei0r_option.ml
from
(liquidsoap_frei0r -> frei0r_option.enabled.ml)
(-> frei0r_option.disabled.ml))
(select
gd_option.ml
from
(liquidsoap_gd -> gd_option.enabled.ml)
(-> gd_option.disabled.ml))
(select
graphics_option.ml
from
(liquidsoap_graphics -> graphics_option.enabled.ml)
(-> graphics_option.disabled.ml))
(select
gstreamer_option.ml
from
(liquidsoap_gstreamer -> gstreamer_option.enabled.ml)
(-> gstreamer_option.disabled.ml))
(select
inotify_option.ml
from
(inotify -> inotify_option.enabled.ml)
(-> inotify_option.disabled.ml))
(select
irc_option.ml
from
(liquidsoap_irc -> irc_option.enabled.ml)
(-> irc_option.disabled.ml))
(select
jemalloc_option.ml
from
(liquidsoap_jemalloc -> jemalloc_option.enabled.ml)
(-> jemalloc_option.disabled.ml))
(select
ladspa_option.ml
from
(liquidsoap_ladspa -> ladspa_option.enabled.ml)
(-> ladspa_option.disabled.ml))
(select
lame_option.ml
from
(liquidsoap_lame -> lame_option.enabled.ml)
(-> lame_option.disabled.ml))
(select
lastfm_option.ml
from
(liquidsoap_lastfm -> lastfm_option.enabled.ml)
(-> lastfm_option.disabled.ml))
(select
lilv_option.ml
from
(liquidsoap_lilv -> lilv_option.enabled.ml)
(-> lilv_option.disabled.ml))
(select
lo_option.ml
from
(liquidsoap_lo -> lo_option.enabled.ml)
(-> lo_option.disabled.ml))
(select
mad_option.ml
from
(liquidsoap_mad -> mad_option.enabled.ml)
(-> mad_option.disabled.ml))
(select
mem_usage_option.ml
from
(liquidsoap_mem_usage -> mem_usage_option.enabled.ml)
(-> mem_usage_option.disabled.ml))
(select
memtrace_option.ml
from
(liquidsoap_memtrace -> memtrace_option.enabled.ml)
(-> memtrace_option.disabled.ml))
(select
ogg_option.ml
from
(liquidsoap_ogg -> ogg_option.enabled.ml)
(-> ogg_option.disabled.ml))
(select
opus_option.ml
from
(liquidsoap_opus -> opus_option.enabled.ml)
(-> opus_option.disabled.ml))
(select
osc_option.ml
from
(liquidsoap_osc -> osc_option.enabled.ml)
(-> osc_option.disabled.ml))
(select
oss_option.ml
from
(liquidsoap_oss -> oss_option.enabled.ml)
(-> oss_option.disabled.ml))
(select
portaudio_option.ml
from
(liquidsoap_portaudio -> portaudio_option.enabled.ml)
(-> portaudio_option.disabled.ml))
(select
posix_time_option.ml
from
(liquidsoap_posix_time -> posix_time_option.enabled.ml)
(-> posix_time_option.disabled.ml))
(select
prometheus_option.ml
from
(liquidsoap_prometheus -> prometheus_option.enabled.ml)
(-> prometheus_option.disabled.ml))
(select
pulseaudio_option.ml
from
(liquidsoap_pulseaudio -> pulseaudio_option.enabled.ml)
(-> pulseaudio_option.disabled.ml))
(select
samplerate_option.ml
from
(liquidsoap_samplerate -> samplerate_option.enabled.ml)
(-> samplerate_option.disabled.ml))
(select
sdl_option.ml
from
(liquidsoap_sdl -> sdl_option.enabled.ml)
(-> sdl_option.disabled.ml))
(select
imagelib_option.ml
from
(liquidsoap_imagelib -> imagelib_option.enabled.ml)
(-> imagelib_option.disabled.ml))
(select
shine_option.ml
from
(liquidsoap_shine -> shine_option.enabled.ml)
(-> shine_option.disabled.ml))
(select
soundtouch_option.ml
from
(liquidsoap_soundtouch -> soundtouch_option.enabled.ml)