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.
1001.
1002.
1003.
1004.
1005.
1006.
1007.
1008.
1009.
1010.
1011.
1012.
1013.
1014.
1015.
1016.
1017.
1018.
1019.
1020.
1021.
1022.
1023.
1024.
1025.
1026.
1027.
1028.
1029.
1030.
1031.
1032.
1033.
1034.
1035.
1036.
1037.
1038.
1039.
1040.
1041.
1042.
1043.
1044.
1045.
1046.
1047.
1048.
1049.
1050.
1051.
1052.
1053.
1054.
1055.
1056.
1057.
1058.
1059.
1060.
1061.
1062.
1063.
1064.
1065.
1066.
1067.
1068.
1069.
1070.
1071.
1072.
1073.
1074.
1075.
1076.
1077.
1078.
1079.
1080.
1081.
1082.
1083.
1084.
1085.
1086.
1087.
1088.
1089.
1090.
1091.
1092.
1093.
1094.
1095.
1096.
1097.
1098.
1099.
1100.
1101.
1102.
1103.
1104.
1105.
1106.
1107.
1108.
1109.
1110.
1111.
1112.
1113.
1114.
1115.
1116.
1117.
1118.
1119.
1120.
1121.
1122.
1123.
1124.
1125.
1126.
1127.
1128.
1129.
1130.
1131.
1132.
1133.
1134.
1135.
1136.
1137.
1138.
1139.
1140.
1141.
1142.
1143.
1144.
1145.
1146.
1147.
1148.
1149.
1150.
1151.
1152.
1153.
1154.
1155.
1156.
1157.
1158.
1159.
1160.
1161.
1162.
1163.
1164.
1165.
1166.
1167.
1>------ Build started: Project: libminiwebrtc, Configuration: Debug Win32 ------
1>Compiling...
1>abs_quant.c
1>abs_quant_loop.c
1>aec_core.c
1>aec_core_sse2.c
1>aec_rdft.c
1>aec_rdft_sse2.c
1>aec_resampler.c
1>aecm_core.c
1>analog_agc.c
2>------ Build started: Project: Libyate, Configuration: Debug Win32 ------
1>arith_routines.c
1>arith_routines_hist.c
1>arith_routines_logist.c
2>Compiling...
1>Generating Code...
2>Resolver.cpp
1>Compiling...
1>audio_buffer.cc
1>audio_processing_impl.cc
1>Generating Code...
2>..\engine\Resolver.cpp(487) : error C2065: 'DNS_NAPTR_DATA' : undeclared identifier
2>..\engine\Resolver.cpp(487) : error C2070: ''unknown-type'': illegal sizeof operand
2>..\engine\Resolver.cpp(489) : error C2065: 'd' : undeclared identifier
2>..\engine\Resolver.cpp(489) : error C2039: 'NAPTR' : is not a member of '_DnsRecordA::<unnamed-tag>'
2> D:\Program Files (x86)\Microsoft Visual Studio 8\VC\PlatformSDK\include\windns.h(1347) : see declaration of '_DnsRecordA::<unnamed-tag>'
2>..\engine\Resolver.cpp(490) : error C2228: left of '.wOrder' must have class/struct/union
2> type is ''unknown-type''
2>..\engine\Resolver.cpp(490) : error C2228: left of '.wPreference' must have class/struct/union
2> type is ''unknown-type''
2>..\engine\Resolver.cpp(490) : error C2228: left of '.pFlags' must have class/struct/union
2> type is ''unknown-type''
2>..\engine\Resolver.cpp(491) : error C2228: left of '.pService' must have class/struct/union
2> type is ''unknown-type''
1>Compiling...
1>augmented_cb_corr.c
2>..\engine\Resolver.cpp(491) : error C2228: left of '.pRegularExpression' must have class/struct/union
2> type is ''unknown-type''
2>..\engine\Resolver.cpp(491) : error C2228: left of '.pReplacement' must have class/struct/union
2> type is ''unknown-type''
2>Creating browse information file...
1>auto_corr_to_refl_coef.c
1>auto_correlation.c
1>bandwidth_estimator.c
1>bw_expand.c
1>cb_construct.c
1>cb_mem_energy.c
1>cb_mem_energy_augmentation.c
1>cb_mem_energy_calc.c
1>cb_search.c
1>cb_search_core.c
1>cb_update_best_index.c
1>chebyshev.c
1>comp_corr.c
1>complex_bit_reverse.c
1>complex_fft.c
1>constants.c
1>copy_set_operations.c
1>Generating Code...
1>Compiling...
1>cpu_features.cc
1>Generating Code...
1>Compiling...
1>crc.c
1>create_augmented_vec.c
1>Generating Code...
1>Compiling...
1>critical_section.cc
1>critical_section_win.cc
2>Microsoft Browse Information Maintenance Utility Version 8.00.50727
2>Copyright (C) Microsoft Corporation. All rights reserved.
2>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\engine\BuildLog.htm"
2>Libyate - 10 error(s), 0 warning(s)
3>------ Build started: Project: libyxml, Configuration: Debug Win32 ------
3>Compiling...
3>XML.cpp
1>Generating Code...
1>Compiling...
1>cross_correlation.c
1>NOTE: default implementation is used
1>decode.c
1>decode_bwe.c
1>decode_plc.c
1>decode_residual.c
1>decoder_interpolate_lsf.c
1>delay_estimator.c
1>delay_estimator_wrapper.c
1>digital_agc.c
1>division_operations.c
1>do_plc.c
1>dot_product_with_scale.c
1>downsample_fast.c
1>echo_cancellation.c
1>Generating Code...
1>Compiling...
1>echo_cancellation_impl.cc
1>Generating Code...
3>Creating library...
1>Compiling...
1>echo_control_mobile.c
1>Generating Code...
3>Creating browse information file...
1>Compiling...
1>echo_control_mobile_impl.cc
1>Generating Code...
1>Compiling...
1>encode.c
1>encode_lpc_swb.c
1>energy.c
1>energy_inverse.c
1>enh_upsample.c
1>enhancer.c
1>enhancer_interface.c
1>entropy_coding.c
1>fft.c
1>fft4g.c
1>Generating Code...
1>Compiling...
1>file_impl.cc
1>..\libs\miniwebrtc\system_wrappers\file_impl.cc(143) : warning C4996: '_wfopen' was declared deprecated
1> D:\Program Files (x86)\Microsoft Visual Studio 8\VC\include\stdio.h(560) : see declaration of '_wfopen'
1> Message: 'This function or variable may be unsafe. Consider using _wfopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\libs\miniwebrtc\system_wrappers\file_impl.cc(145) : warning C4996: '_wfopen' was declared deprecated
1> D:\Program Files (x86)\Microsoft Visual Studio 8\VC\include\stdio.h(560) : see declaration of '_wfopen'
1> Message: 'This function or variable may be unsafe. Consider using _wfopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\libs\miniwebrtc\system_wrappers\file_impl.cc(150) : warning C4996: '_wfopen' was declared deprecated
1> D:\Program Files (x86)\Microsoft Visual Studio 8\VC\include\stdio.h(560) : see declaration of '_wfopen'
1> Message: 'This function or variable may be unsafe. Consider using _wfopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>..\libs\miniwebrtc\system_wrappers\file_impl.cc(152) : warning C4996: '_wfopen' was declared deprecated
1> D:\Program Files (x86)\Microsoft Visual Studio 8\VC\include\stdio.h(560) : see declaration of '_wfopen'
1> Message: 'This function or variable may be unsafe. Consider using _wfopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>Generating Code...
1>Compiling...
1>filter_ar.c
1>filter_ar_fast_q12.c
1>filter_functions.c
1>filter_ma_fast_q12.c
1>filterbank_tables.c
1>filterbanks.c
1>filtered_cb_vecs.c
1>filters.c
1>frame_classify.c
1>Generating Code...
1>Compiling...
1>gain_control_impl.cc
3>Microsoft Browse Information Maintenance Utility Version 8.00.50727
3>Copyright (C) Microsoft Corporation. All rights reserved.
3>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\yxml\BuildLog.htm"
3>libyxml - 0 error(s), 0 warning(s)
4>------ Build started: Project: libyasn, Configuration: Debug Win32 ------
4>Compiling...
4>asn.cpp
1>Generating Code...
1>Compiling...
1>gain_dequant.c
1>gain_quant.c
1>get_cd_vec.c
1>get_hanning_window.c
1>get_lsp_poly.c
1>get_scaling_square.c
1>get_sync_seq.c
1>Generating Code...
1>Compiling...
1>high_pass_filter_impl.cc
4>Creating library...
4>Creating browse information file...
1>Generating Code...
1>Compiling...
1>hp_input.c
1>hp_output.c
1>ilbc.c
1>..\libs\miniwebrtc\audio\coding_ilbc\ilbc.c(254) : warning C4996: 'strcpy' was declared deprecated
1> D:\Program Files (x86)\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1> Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>ilbc_specific_functions.c
1>index_conv_dec.c
1>index_conv_enc.c
1>init_decode.c
1>init_encode.c
1>initialize.c
1>interpolate.c
1>interpolate_samples.c
1>intialize.c
1>isac.c
1>..\libs\miniwebrtc\audio\coding_isac\main\isac.c(2583) : warning C4996: 'strcpy' was declared deprecated
1> D:\Program Files (x86)\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1> Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>isacfix.c
1>..\libs\miniwebrtc\audio\coding_isac\fix\isacfix.c(1528) : warning C4996: 'strcpy' was declared deprecated
1> D:\Program Files (x86)\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
1> Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>lattice.c
1>lattice_c.c
1>Generating Code...
1>Compiling...
1>level_estimator_impl.cc
1>Generating Code...
1>Compiling...
1>levinson_durbin.c
1>lpc_analysis.c
1>lpc_encode.c
1>lpc_gain_swb_tables.c
1>lpc_masking_model.c
1>lpc_shape_swb12_tables.c
1>lpc_shape_swb16_tables.c
1>lpc_tables.c
1>lpc_to_refl_coef.c
1>lsf_check.c
1>lsf_interpolate_to_poly_dec.c
1>lsf_interpolate_to_poly_enc.c
1>lsf_to_lsp.c
1>lsf_to_poly.c
1>lsp_to_lsf.c
1>min_max_operations.c
1>my_corr.c
1>nearest_neighbor.c
1>noise_suppression.c
1>Generating Code...
4>Microsoft Browse Information Maintenance Utility Version 8.00.50727
4>Copyright (C) Microsoft Corporation. All rights reserved.
4>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\yasn\BuildLog.htm"
4>libyasn - 0 error(s), 0 warning(s)
5>------ Build started: Project: libysig, Configuration: Debug Win32 ------
1>Compiling...
1>noise_suppression_impl.cc
5>Compiling...
5>address.cpp
1>Generating Code...
1>Compiling...
1>ns_core.c
1>..\libs\miniwebrtc\audio\processing\ns\ns_core.c(879) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
1>..\libs\miniwebrtc\audio\processing\ns\ns_core.c(882) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
1>..\libs\miniwebrtc\audio\processing\ns\ns_core.c(898) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
1>..\libs\miniwebrtc\audio\processing\ns\ns_core.c(901) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
1>..\libs\miniwebrtc\audio\processing\ns\ns_core.c(947) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
1>..\libs\miniwebrtc\audio\processing\ns\ns_core.c(950) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
1>..\libs\miniwebrtc\audio\processing\ns\ns_core.c(956) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
1>pack_bits.c
1>pitch_estimator.c
1>pitch_filter.c
1>pitch_gain_tables.c
1>pitch_lag_tables.c
1>poly_to_lsf.c
1>poly_to_lsp.c
1>Generating Code...
1>Compiling...
1>processing_component.cc
5>dumper.cpp
1>Generating Code...
1>Compiling...
1>randomization_functions.c
1>refiner.c
1>refl_coef_to_lpc.c
1>resample.c
1>resample_48khz.c
1>resample_by_2.c
1>resample_by_2_internal.c
1>resample_fractional.c
1>Generating Code...
1>Compiling...
1>resampler.cc
1>Generating Code...
1>Compiling...
1>ring_buffer.c
1>simple_interpolate_lsf.c
1>simple_lpc_analysis.c
1>simple_lsf_dequant.c
1>simple_lsf_quant.c
1>smooth.c
1>smooth_out_data.c
1>sort_sq.c
5>engine.cpp
1>spectrum_ar_model_tables.c
1>spl_sqrt.c
1>spl_sqrt_floor.c
1>spl_version.c
1>..\libs\miniwebrtc\audio\common\processing\spl_version.c(23) : warning C4996: 'strncpy' was declared deprecated
1> D:\Program Files (x86)\Microsoft Visual Studio 8\VC\include\string.h(156) : see declaration of 'strncpy'
1> Message: 'This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>split_vq.c
1>splitting_filter.c
1>sqrt_of_one_minus_x_squared.c
1>state_construct.c
1>state_search.c
1>swap_bytes.c
1>transform.c
1>unpack_bits.c
1>Generating Code...
1>Compiling...
1>vad_core.c
1>vad_filterbank.c
1>vad_gmm.c
1>vad_sp.c
1>vector_scaling_operations.c
1>Generating Code...
1>Compiling...
1>voice_detection_impl.cc
5>interface.cpp
1>Generating Code...
1>Compiling...
1>vq3.c
1>vq4.c
1>webrtc_fft_t_1024_8.c
1>webrtc_fft_t_rad.c
1>webrtc_vad.c
1>window32_w32.c
1>xcorr_coef.c
1>Generating Code...
1>Compiling...
1>transform.c
1>Compiling...
1>splitting_filter.cc
1>Compiling...
1>spectrum_ar_model_tables.c
1>Compiling...
5>isup.cpp
1>pitch_lag_tables.c
1>Compiling...
1>pitch_gain_tables.c
1>Compiling...
1>pitch_filter.c
1>Compiling...
1>pitch_estimator.c
1>Compiling...
1>lpc_tables.c
1>Compiling...
1>lattice.c
1>Compiling...
1>filterbanks.c
1>Compiling...
1>filterbank_tables.c
1>Compiling...
1>fft.c
1>..\libs\miniwebrtc\audio\coding_isac\main\fft.c(299) : warning C4244: '=' : conversion from 'double' to 'int', possible loss of data
1>Compiling...
1>entropy_coding.c
5>..\libs\ysig\isup.cpp(3394) : warning C4244: '=' : conversion from 'u_int64_t' to 'u_int32_t', possible loss of data
1>Compiling...
5>layer2.cpp
1>encode.c
1>Compiling...
1>encode.c
1>Compiling...
1>decode_bwe.c
1>Compiling...
1>decode.c
1>Compiling...
1>decode.c
1>Compiling...
1>bandwidth_estimator.c
1>Compiling...
1>arith_routines_logist.c
1>Compiling...
1>arith_routines_hist.c
1>Compiling...
1>arith_routines.c
1>Creating library...
5>layer3.cpp
1>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\miniwebrtc\BuildLog.htm"
1>libminiwebrtc - 0 error(s), 16 warning(s)
6>------ Build started: Project: libysip, Configuration: Debug Win32 ------
6>Compiling...
6>engine.cpp
5>layer4.cpp
6>message.cpp
5>management.cpp
6>transaction.cpp
5>q921.cpp
6>util.cpp
5>q931.cpp
6>Generating Code...
6>Creating library...
6>Creating browse information file...
5>router.cpp
5>sccp.cpp
5>..\libs\ysig\sccp.cpp(3376) : warning C4018: '>' : signed/unsigned mismatch
5>sigcall.cpp
6>Microsoft Browse Information Maintenance Utility Version 8.00.50727
6>Copyright (C) Microsoft Corporation. All rights reserved.
6>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\ysip\BuildLog.htm"
6>libysip - 0 error(s), 0 warning(s)
7>------ Build started: Project: libyrtp, Configuration: Debug Win32 ------
7>Compiling...
7>dejitter.cpp
5>sigtran.cpp
5>tcap.cpp
7>secure.cpp
5>..\libs\ysig\tcap.cpp(323) : warning C4244: 'argument' : conversion from 'u_int64_t' to 'int', possible loss of data
5>..\libs\ysig\tcap.cpp(3730) : warning C4244: 'initializing' : conversion from 'u_int16_t' to 'u_int8_t', possible loss of data
7>Generating Code...
5>testpart.cpp
7>Compiling...
7>session.cpp
5>tup.cpp
7>transport.cpp
5>Generating Code...
7>Generating Code...
7>Creating library...
7>Creating browse information file...
7>Microsoft Browse Information Maintenance Utility Version 8.00.50727
7>Copyright (C) Microsoft Corporation. All rights reserved.
7>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\yrtp\BuildLog.htm"
7>libyrtp - 0 error(s), 0 warning(s)
8>------ Build started: Project: libyiax, Configuration: Debug Win32 ------
5>Compiling resources...
8>Compiling...
8>engine.cpp
8>frame.cpp
8>transaction.cpp
8>Generating Code...
8>Creating library...
5>Linking...
8>Creating browse information file...
5>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
5>Creating browse information file...
8>Microsoft Browse Information Maintenance Utility Version 8.00.50727
8>Copyright (C) Microsoft Corporation. All rights reserved.
8>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\yiax\BuildLog.htm"
8>libyiax - 0 error(s), 0 warning(s)
9>------ Build started: Project: libymgcp, Configuration: Debug Win32 ------
9>Compiling...
9>endpoint.cpp
9>engine.cpp
9>message.cpp
5>Microsoft Browse Information Maintenance Utility Version 8.00.50727
5>Copyright (C) Microsoft Corporation. All rights reserved.
9>transaction.cpp
5>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\ysig\BuildLog.htm"
5>libysig - 1 error(s), 4 warning(s)
10>------ Build started: Project: libymodem, Configuration: Debug Win32 ------
10>Compiling...
10>modem.cpp
9>Generating Code...
9>Compiling resources...
9>Linking...
9>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
9>Creating browse information file...
10>..\libs\ymodem\modem.cpp(223) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(223) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(223) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(223) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(224) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(224) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(225) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(225) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(225) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(225) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(226) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(226) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(227) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(227) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(227) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(227) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(228) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(228) : warning C4305: 'initializing' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(254) : warning C4305: '=' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(255) : warning C4305: '=' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(256) : warning C4305: '=' : truncation from 'double' to 'float'
10>..\libs\ymodem\modem.cpp(379) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
10>uart.cpp
10>..\libs\ymodem\uart.cpp(192) : warning C4355: 'this' : used in base member initializer list
10>..\libs\ymodem\uart.cpp(672) : warning C4355: 'this' : used in base member initializer list
10>Generating Code...
10>Creating library...
10>Creating browse information file...
9>Microsoft Browse Information Maintenance Utility Version 8.00.50727
9>Copyright (C) Microsoft Corporation. All rights reserved.
9>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\ymgcp\BuildLog.htm"
9>libymgcp - 1 error(s), 0 warning(s)
11>------ Build started: Project: libysdp, Configuration: Debug Win32 ------
11>Compiling...
11>media.cpp
11>parser.cpp
11>session.cpp
10>Microsoft Browse Information Maintenance Utility Version 8.00.50727
10>Copyright (C) Microsoft Corporation. All rights reserved.
10>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\ymodem\BuildLog.htm"
10>libymodem - 0 error(s), 24 warning(s)
12>------ Build started: Project: libyjabber, Configuration: Debug Win32 ------
12>Compiling...
12>jbengine.cpp
11>Generating Code...
11>Creating library...
11>Creating browse information file...
12>jbstream.cpp
11>Microsoft Browse Information Maintenance Utility Version 8.00.50727
11>Copyright (C) Microsoft Corporation. All rights reserved.
11>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\ysdp\BuildLog.htm"
11>libysdp - 0 error(s), 0 warning(s)
13>------ Build started: Project: libilbc, Configuration: Debug Win32 ------
13>Compiling...
13>anaFilter.c
13>constants.c
12>jgengine.cpp
13>createCB.c
13>doCPLC.c
13>enhancer.c
13>filter.c
13>FrameClassify.c
13>gainquant.c
13>getCBvec.c
13>helpfun.c
13>hpInput.c
13>hpOutput.c
13>iCBConstruct.c
13>iCBSearch.c
13>iLBC_decode.c
13>iLBC_encode.c
13>LPCdecode.c
13>LPCencode.c
13>lsf.c
13>packing.c
13>Generating Code...
13>Compiling...
13>StateConstructW.c
13>StateSearchW.c
13>syntFilter.c
13>Generating Code...
13>Creating library...
13>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\ilbc\BuildLog.htm"
13>libilbc - 0 error(s), 0 warning(s)
12>session.cpp
14>------ Build started: Project: libypbx, Configuration: Debug Win32 ------
14>Compiling...
14>assist.cpp
12>xmpputils.cpp
12>Generating Code...
14>multiroute.cpp
12>Compiling resources...
12>Linking...
12>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
12>Creating browse information file...
14>Generating Code...
14>Creating library...
14>Creating browse information file...
14>Microsoft Browse Information Maintenance Utility Version 8.00.50727
14>Copyright (C) Microsoft Corporation. All rights reserved.
14>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\ypbx\BuildLog.htm"
14>libypbx - 0 error(s), 0 warning(s)
12>Microsoft Browse Information Maintenance Utility Version 8.00.50727
12>Copyright (C) Microsoft Corporation. All rights reserved.
15>------ Build started: Project: libysnmp, Configuration: Debug Win32 ------
15>Compiling...
12>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\yjabber\BuildLog.htm"
12>libyjabber - 1 error(s), 0 warning(s)
16>------ Build started: Project: libyscript, Configuration: Debug Win32 ------
16>Compiling...
15>snmp.cpp
16>evaluator.cpp
16>javascript.cpp
15>Creating library...
15>Creating browse information file...
16>..\libs\yscript\javascript.cpp(38) : warning C4355: 'this' : used in base member initializer list
16>jsobjects.cpp
16>script.cpp
15>Microsoft Browse Information Maintenance Utility Version 8.00.50727
15>Copyright (C) Microsoft Corporation. All rights reserved.
15>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\ysnmp\BuildLog.htm"
15>libysnmp - 0 error(s), 0 warning(s)
16>Generating Code...
17>------ Build started: Project: _sip_cnam_lnp, Configuration: Debug Win32 ------
17>Compiling...
17>sip_cnam_lnp.cpp
16>Compiling resources...
16>Linking...
16>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
16>Creating browse information file...
17>Compiling resources...
17>Linking...
17>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
17>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
17>_sip_cnam_lnp - 1 error(s), 0 warning(s)
18>------ Build started: Project: _accfile, Configuration: Debug Win32 ------
18>_accfile : warning PRJ0009 : Build log could not be opened for writing.
18>Make sure that the file is not open by another process and is not write-protected.
18>Compiling...
18>accfile.cpp
18>Linking...
18>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
18>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
18>_accfile - 1 error(s), 1 warning(s)
19>------ Build started: Project: _analyzer, Configuration: Debug Win32 ------
19>_analyzer : warning PRJ0009 : Build log could not be opened for writing.
19>Make sure that the file is not open by another process and is not write-protected.
19>Compiling...
19>analyzer.cpp
16>Microsoft Browse Information Maintenance Utility Version 8.00.50727
16>Copyright (C) Microsoft Corporation. All rights reserved.
16>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\yscript\BuildLog.htm"
16>libyscript - 1 error(s), 1 warning(s)
20>------ Build started: Project: _callfork, Configuration: Debug Win32 ------
20>Compiling...
20>callfork.cpp
19>Linking...
19>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
19>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
19>_analyzer - 1 error(s), 1 warning(s)
20>Linking...
20>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
20>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
20>_callfork - 1 error(s), 0 warning(s)
21>------ Build started: Project: _callgen, Configuration: Debug Win32 ------
21>Compiling...
21>callgen.cpp
22>------ Build started: Project: _cdrbuild, Configuration: Debug Win32 ------
22>_cdrbuild : warning PRJ0009 : Build log could not be opened for writing.
22>Make sure that the file is not open by another process and is not write-protected.
22>Compiling...
22>cdrbuild.cpp
21>Linking...
21>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
21>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
21>_callgen - 1 error(s), 0 warning(s)
22>Linking...
22>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
22>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
22>_cdrbuild - 1 error(s), 1 warning(s)
23>------ Build started: Project: _ccongestion, Configuration: Debug Win32 ------
24>------ Build started: Project: _cpuload, Configuration: Debug Win32 ------
24>_cpuload : warning PRJ0009 : Build log could not be opened for writing.
24>Make sure that the file is not open by another process and is not write-protected.
24>Compiling...
23>Compiling...
24>cpuload.cpp
23>ccongestion.cpp
24>..\modules\server\cpuload.cpp(383) : warning C4244: 'initializing' : conversion from 'u_int64_t' to 'int', possible loss of data
24>..\modules\server\cpuload.cpp(384) : warning C4244: 'initializing' : conversion from 'u_int64_t' to 'int', possible loss of data
24>..\modules\server\cpuload.cpp(388) : warning C4244: 'initializing' : conversion from 'u_int64_t' to 'int', possible loss of data
24>Linking...
23>Linking...
23>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
24>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
23>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
23>_ccongestion - 1 error(s), 0 warning(s)
24>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
24>_cpuload - 1 error(s), 4 warning(s)
25>------ Build started: Project: _monitoring, Configuration: Debug Win32 ------
25>Compiling...
25>monitoring.cpp
26>------ Build started: Project: _ysnmpagent, Configuration: Debug Win32 ------
26>_ysnmpagent : warning PRJ0009 : Build log could not be opened for writing.
26>Make sure that the file is not open by another process and is not write-protected.
26>Compiling...
26>ysnmpagent.cpp
25>..\modules\server\monitoring.cpp(2993) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
25>..\modules\server\monitoring.cpp(2994) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
25>Linking...
25>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
25>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
25>_monitoring - 1 error(s), 2 warning(s)
27>------ Build started: Project: _cache, Configuration: Debug Win32 ------
27>_cache : warning PRJ0009 : Build log could not be opened for writing.
27>Make sure that the file is not open by another process and is not write-protected.
27>Compiling...
27>cache.cpp
26>Linking...
26>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
26>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
26>_ysnmpagent - 1 error(s), 1 warning(s)
28>------ Build started: Project: _dbwave, Configuration: Debug Win32 ------
28>Compiling...
28>dbwave.cpp
27>Linking...
27>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
27>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
27>_cache - 1 error(s), 1 warning(s)
28>Linking...
28>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
28>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
28>_dbwave - 1 error(s), 0 warning(s)
29>------ Build started: Project: _isupmangler, Configuration: Debug Win32 ------
29>Compiling...
29>isupmangler.cpp
30>------ Build started: Project: _cdrfile, Configuration: Debug Win32 ------
30>_cdrfile : warning PRJ0009 : Build log could not be opened for writing.
30>Make sure that the file is not open by another process and is not write-protected.
30>Compiling...
30>cdrfile.cpp
29>Linking...
29>LINK : fatal error LNK1181: cannot open input file 'Debug/libysig.lib'
29>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
29>_isupmangler - 1 error(s), 0 warning(s)
31>------ Build started: Project: _sigtransport, Configuration: Debug Win32 ------
31>_sigtransport : warning PRJ0009 : Build log could not be opened for writing.
31>Make sure that the file is not open by another process and is not write-protected.
30>cl : Command line warning D9028 : minimal rebuild failure, reverting to normal build
30>Linking...
31>Compiling...
30>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
31>cl : Command line warning D9028 : minimal rebuild failure, reverting to normal build
31>sigtransport.cpp
30>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
30>_cdrfile - 1 error(s), 2 warning(s)
32>------ Build started: Project: _jabberclient, Configuration: Debug Win32 ------
32>Compiling...
32>jabberclient.cpp
31>Linking...
31>LINK : fatal error LNK1181: cannot open input file 'Debug/libysig.lib'
31>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
31>_sigtransport - 1 error(s), 2 warning(s)
33>------ Build started: Project: _presence, Configuration: Debug Win32 ------
33>_presence : warning PRJ0009 : Build log could not be opened for writing.
33>Make sure that the file is not open by another process and is not write-protected.
33>Compiling...
33>presence.cpp
32>Linking...
32>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
32>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
32>_jabberclient - 1 error(s), 0 warning(s)
34>------ Build started: Project: _jbfeatures, Configuration: Debug Win32 ------
34>_jbfeatures : warning PRJ0009 : Build log could not be opened for writing.
34>Make sure that the file is not open by another process and is not write-protected.
34>Compiling...
34>jbfeatures.cpp
33>Linking...
33>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
33>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
33>_presence - 1 error(s), 1 warning(s)
35>------ Build started: Project: _subscription, Configuration: Debug Win32 ------
35>Compiling...
35>subscription.cpp
34>Linking...
34>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
34>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
34>_jbfeatures - 1 error(s), 1 warning(s)
35>Linking...
35>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
35>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
35>_subscription - 1 error(s), 0 warning(s)
36>------ Build started: Project: _callcounters, Configuration: Debug Win32 ------
36>Compiling...
36>callcounters.cpp
37>------ Build started: Project: _users, Configuration: Debug Win32 ------
37>_users : warning PRJ0009 : Build log could not be opened for writing.
37>Make sure that the file is not open by another process and is not write-protected.
37>Compiling...
37>users.cpp
36>Linking...
36>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
36>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
36>_callcounters - 1 error(s), 0 warning(s)
38>------ Build started: Project: _ciscosm, Configuration: Debug Win32 ------
38>_ciscosm : warning PRJ0009 : Build log could not be opened for writing.
38>Make sure that the file is not open by another process and is not write-protected.
37>cl : Command line warning D9028 : minimal rebuild failure, reverting to normal build
37>Linking...
38>Compiling...
37>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
38>ciscosm.cpp
37>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
37>_users - 1 error(s), 2 warning(s)
39>------ Build started: Project: _queuesnotify, Configuration: Debug Win32 ------
39>Compiling...
39>queuesnotify.cpp
38>Linking...
38>LINK : fatal error LNK1181: cannot open input file 'Debug/libysig.lib'
39>Linking...
38>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
38>_ciscosm - 1 error(s), 1 warning(s)
39>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
39>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
39>_queuesnotify - 1 error(s), 0 warning(s)
40>------ Build started: Project: _filetransfer, Configuration: Debug Win32 ------
40>Compiling...
40>filetransfer.cpp
41>------ Build started: Project: _ysockschan, Configuration: Debug Win32 ------
41>_ysockschan : warning PRJ0009 : Build log could not be opened for writing.
41>Make sure that the file is not open by another process and is not write-protected.
41>Compiling...
41>ysockschan.cpp
40>Linking...
40>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
40>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
40>_filetransfer - 1 error(s), 0 warning(s)
42>------ Build started: Project: _conference, Configuration: Debug Win32 ------
42>_conference : warning PRJ0009 : Build log could not be opened for writing.
42>Make sure that the file is not open by another process and is not write-protected.
42>Compiling...
42>conference.cpp
41>Linking...
41>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
41>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
41>_ysockschan - 1 error(s), 1 warning(s)
43>------ Build started: Project: _analogdetect, Configuration: Debug Win32 ------
43>Compiling...
43>analogdetect.cpp
42>Linking...
42>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
42>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
42>_conference - 1 error(s), 1 warning(s)
43>Linking...
43>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
44>------ Build started: Project: _enumroute, Configuration: Debug Win32 ------
44>_enumroute : warning PRJ0009 : Build log could not be opened for writing.
44>Make sure that the file is not open by another process and is not write-protected.
43>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
43>_analogdetect - 1 error(s), 0 warning(s)
44>Compiling...
44>enumroute.cpp
45>------ Build started: Project: _dbpbx, Configuration: Debug Win32 ------
45>Compiling...
45>dbpbx.cpp
44>Linking...
44>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
44>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
44>_enumroute - 1 error(s), 1 warning(s)
46>------ Build started: Project: _dsoundchan, Configuration: Debug Win32 ------
46>_dsoundchan : warning PRJ0009 : Build log could not be opened for writing.
46>Make sure that the file is not open by another process and is not write-protected.
45>Linking...
46>Compiling...
45>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
46>cl : Command line warning D9028 : minimal rebuild failure, reverting to normal build
46>dsoundchan.cpp
45>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
45>_dbpbx - 1 error(s), 0 warning(s)
47>------ Build started: Project: _lateroute, Configuration: Debug Win32 ------
47>_lateroute : warning PRJ0009 : Build log could not be opened for writing.
47>Make sure that the file is not open by another process and is not write-protected.
47>Compiling...
47>lateroute.cpp
46>..\modules\client\dsoundchan.cpp(35) : fatal error C1083: Cannot open include file: 'dsound.h': No such file or directory
46>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
46>_dsoundchan - 1 error(s), 2 warning(s)
48>------ Build started: Project: _clustering, Configuration: Debug Win32 ------
47>Linking...
48>Compiling...
47>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
47>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
47>_lateroute - 1 error(s), 1 warning(s)
48>clustering.cpp
49>------ Build started: Project: _dumbchan, Configuration: Debug Win32 ------
49>_dumbchan : warning PRJ0009 : Build log could not be opened for writing.
49>Make sure that the file is not open by another process and is not write-protected.
49>Compiling...
49>dumbchan.cpp
48>Linking...
48>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
48>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
48>_clustering - 1 error(s), 0 warning(s)
49>cl : Command line warning D9028 : minimal rebuild failure, reverting to normal build
50>------ Build started: Project: _extmodule, Configuration: Debug Win32 ------
49>Linking...
50>Compiling...
49>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
50>extmodule.cpp
49>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
49>_dumbchan - 1 error(s), 2 warning(s)
51>------ Build started: Project: _ilbccodec, Configuration: Debug Win32 ------
51>_ilbccodec : warning PRJ0009 : Build log could not be opened for writing.
51>Make sure that the file is not open by another process and is not write-protected.
51>Compiling...
51>ilbccodec.cpp
50>Linking...
50>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
50>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
50>_extmodule - 1 error(s), 0 warning(s)
51>Linking...
51>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
51>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
51>_ilbccodec - 1 error(s), 1 warning(s)
52>------ Build started: Project: _mux, Configuration: Debug Win32 ------
52>Compiling...
52>mux.cpp
53>------ Build started: Project: _mgcpgw, Configuration: Debug Win32 ------
53>_mgcpgw : warning PRJ0009 : Build log could not be opened for writing.
53>Make sure that the file is not open by another process and is not write-protected.
53>Compiling...
53>mgcpgw.cpp
52>Linking...
52>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
52>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
52>_mux - 1 error(s), 0 warning(s)
53>Linking...
53>LINK : fatal error LNK1181: cannot open input file 'Debug/libymgcp.lib'
54>------ Build started: Project: _mgcpca, Configuration: Debug Win32 ------
53>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
53>_mgcpgw - 1 error(s), 1 warning(s)
54>Compiling...
54>mgcpca.cpp
55>------ Build started: Project: _ss7_lnp_ansi, Configuration: Debug Win32 ------
55>_ss7_lnp_ansi : warning PRJ0009 : Build log could not be opened for writing.
55>Make sure that the file is not open by another process and is not write-protected.
55>Compiling...
55>ss7_lnp_ansi.cpp
54>Linking...
54>LINK : fatal error LNK1181: cannot open input file 'Debug/libymgcp.lib'
54>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
54>_mgcpca - 1 error(s), 0 warning(s)
55>..\modules\sig\ss7_lnp_ansi.cpp(1480) : warning C4244: 'initializing' : conversion from 'double' to 'u_int64_t', possible loss of data
55>Linking...
55>LINK : fatal error LNK1181: cannot open input file 'Debug/libysig.lib'
55>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
55>_ss7_lnp_ansi - 1 error(s), 2 warning(s)
56>------ Build started: Project: _heartbeat, Configuration: Debug Win32 ------
56>Compiling...
56>heartbeat.cpp
57>------ Build started: Project: _analog, Configuration: Debug Win32 ------
57>_analog : warning PRJ0009 : Build log could not be opened for writing.
57>Make sure that the file is not open by another process and is not write-protected.
57>Compiling...
57>analog.cpp
56>Linking...
56>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
56>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
56>_heartbeat - 1 error(s), 0 warning(s)
58>------ Build started: Project: _ysigchan, Configuration: Debug Win32 ------
58>_ysigchan : warning PRJ0009 : Build log could not be opened for writing.
58>Make sure that the file is not open by another process and is not write-protected.
58>Compiling...
58>ysigchan.cpp
57>Linking...
57>LINK : fatal error LNK1181: cannot open input file 'Debug/libysig.lib'
57>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
57>_analog - 1 error(s), 1 warning(s)
59>------ Build started: Project: _javascript, Configuration: Debug Win32 ------
59>Compiling...
59>javascript.cpp
58>Linking...
58>LINK : fatal error LNK1181: cannot open input file 'Debug/libysig.lib'
58>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
58>_ysigchan - 1 error(s), 1 warning(s)
60>------ Build started: Project: _camel_map, Configuration: Debug Win32 ------
60>_camel_map : warning PRJ0009 : Build log could not be opened for writing.
60>Make sure that the file is not open by another process and is not write-protected.
60>Compiling...
60>camel_map.cpp
59>Linking...
59>LINK : fatal error LNK1181: cannot open input file 'Debug/libyscript.lib'
59>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
59>_javascript - 1 error(s), 0 warning(s)
61>------ Build started: Project: _isaccodec, Configuration: Debug Win32 ------
61>_isaccodec : warning PRJ0009 : Build log could not be opened for writing.
61>Make sure that the file is not open by another process and is not write-protected.
61>Compiling...
61>isaccodec.cpp
60>..\modules\sig\camel_map.cpp(8138) : warning C4355: 'this' : used in base member initializer list
60>..\modules\sig\camel_map.cpp(8139) : warning C4355: 'this' : used in base member initializer list
60>Linking...
60>LINK : fatal error LNK1181: cannot open input file 'Debug/libysig.lib'
60>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
60>_camel_map - 1 error(s), 3 warning(s)
61>Linking...
61>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
61>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
61>_isaccodec - 1 error(s), 1 warning(s)
62>------ Build started: Project: _gvoice, Configuration: Debug Win32 ------
62>Compiling...
62>gvoice.cpp
63>------ Build started: Project: _ilbcwebrtc, Configuration: Debug Win32 ------
63>_ilbcwebrtc : warning PRJ0009 : Build log could not be opened for writing.
63>Make sure that the file is not open by another process and is not write-protected.
63>Compiling...
63>ilbcwebrtc.cpp
62>Linking...
62>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
62>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
62>_gvoice - 1 error(s), 0 warning(s)
64>------ Build started: Project: _cdrcombine, Configuration: Debug Win32 ------
64>_cdrcombine : warning PRJ0009 : Build log could not be opened for writing.
64>Make sure that the file is not open by another process and is not write-protected.
64>Compiling...
64>cdrcombine.cpp
63>Linking...
63>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
63>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
63>_ilbcwebrtc - 1 error(s), 1 warning(s)
65>------ Build started: Project: _jabberserver, Configuration: Debug Win32 ------
65>Compiling...
65>jabberserver.cpp
64>Linking...
64>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
64>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
64>_cdrcombine - 1 error(s), 1 warning(s)
66>------ Build started: Project: _fileinfo, Configuration: Debug Win32 ------
66>_fileinfo : warning PRJ0009 : Build log could not be opened for writing.
66>Make sure that the file is not open by another process and is not write-protected.
66>Compiling...
66>fileinfo.cpp
65>Linking...
65>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
65>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
65>_jabberserver - 1 error(s), 0 warning(s)
67>------ Build started: Project: _ystunchan, Configuration: Debug Win32 ------
67>_ystunchan : warning PRJ0009 : Build log could not be opened for writing.
67>Make sure that the file is not open by another process and is not write-protected.
67>Compiling...
67>ystunchan.cpp
66>Linking...
66>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
66>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
66>_fileinfo - 1 error(s), 1 warning(s)
68>------ Build started: Project: _ysipchan, Configuration: Debug Win32 ------
68>Compiling...
68>ysipchan.cpp
67>Linking...
67>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
67>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
67>_ystunchan - 1 error(s), 1 warning(s)
69>------ Build started: Project: _yrtpchan, Configuration: Debug Win32 ------
69>_yrtpchan : warning PRJ0009 : Build log could not be opened for writing.
69>Make sure that the file is not open by another process and is not write-protected.
69>Compiling...
69>yrtpchan.cpp
68>Linking...
68>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
68>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
68>_ysipchan - 1 error(s), 0 warning(s)
70>------ Build started: Project: _yradius, Configuration: Debug Win32 ------
70>_yradius : warning PRJ0009 : Build log could not be opened for writing.
70>Make sure that the file is not open by another process and is not write-protected.
70>Compiling...
70>yradius.cpp
69>Linking...
69>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
69>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
69>_yrtpchan - 1 error(s), 1 warning(s)
71>------ Build started: Project: _yjinglechan, Configuration: Debug Win32 ------
71>Compiling...
71>yjinglechan.cpp
70>Linking...
70>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
70>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
70>_yradius - 1 error(s), 1 warning(s)
72>------ Build started: Project: _yiaxchan, Configuration: Debug Win32 ------
72>_yiaxchan : warning PRJ0009 : Build log could not be opened for writing.
72>Make sure that the file is not open by another process and is not write-protected.
72>Compiling...
72>yiaxchan.cpp
71>Linking...
71>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
71>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
71>_yjinglechan - 1 error(s), 0 warning(s)
73>------ Build started: Project: _msgsniff, Configuration: Debug Win32 ------
73>_msgsniff : warning PRJ0009 : Build log could not be opened for writing.
73>Make sure that the file is not open by another process and is not write-protected.
73>Compiling...
73>msgsniff.cpp
72>Linking...
72>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
72>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
72>_yiaxchan - 1 error(s), 1 warning(s)
74>------ Build started: Project: _wavefile, Configuration: Debug Win32 ------
74>Compiling...
74>wavefile.cpp
73>Linking...
73>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
73>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
73>_msgsniff - 1 error(s), 1 warning(s)
75>------ Build started: Project: _tonegen, Configuration: Debug Win32 ------
75>_tonegen : warning PRJ0009 : Build log could not be opened for writing.
75>Make sure that the file is not open by another process and is not write-protected.
75>Compiling...
75>tonegen.cpp
74>Linking...
74>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
74>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
74>_wavefile - 1 error(s), 0 warning(s)
76>------ Build started: Project: _tonedetect, Configuration: Debug Win32 ------
75>Linking...
76>Compiling...
75>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
76>tonedetect.cpp
75>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
75>_tonegen - 1 error(s), 1 warning(s)
77>------ Build started: Project: _park, Configuration: Debug Win32 ------
77>_park : warning PRJ0009 : Build log could not be opened for writing.
77>Make sure that the file is not open by another process and is not write-protected.
77>Compiling...
77>park.cpp
76>Linking...
76>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
76>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
76>_tonedetect - 1 error(s), 0 warning(s)
77>Linking...
78>------ Build started: Project: _sipfeatures, Configuration: Debug Win32 ------
78>Compiling...
77>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
77>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
77>_park - 1 error(s), 1 warning(s)
78>sipfeatures.cpp
79>------ Build started: Project: _rmanager, Configuration: Debug Win32 ------
79>_rmanager : warning PRJ0009 : Build log could not be opened for writing.
79>Make sure that the file is not open by another process and is not write-protected.
79>Compiling...
79>rmanager.cpp
78>Linking...
78>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
78>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
78>_sipfeatures - 1 error(s), 0 warning(s)
80>------ Build started: Project: _register, Configuration: Debug Win32 ------
80>_register : warning PRJ0009 : Build log could not be opened for writing.
80>Make sure that the file is not open by another process and is not write-protected.
79>cl : Command line warning D9028 : minimal rebuild failure, reverting to normal build
80>Compiling...
79>Linking...
79>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
80>register.cpp
79>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
79>_rmanager - 1 error(s), 2 warning(s)
81>------ Build started: Project: _regfile, Configuration: Debug Win32 ------
81>Compiling...
81>regfile.cpp
80>Linking...
80>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
80>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
80>_register - 1 error(s), 1 warning(s)
81>cl : Command line warning D9028 : minimal rebuild failure, reverting to normal build
82>------ Build started: Project: _regexroute, Configuration: Debug Win32 ------
82>_regexroute : warning PRJ0009 : Build log could not be opened for writing.
82>Make sure that the file is not open by another process and is not write-protected.
81>Linking...
82>Compiling...
81>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
81>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
81>_regfile - 1 error(s), 1 warning(s)
82>regexroute.cpp
83>------ Build started: Project: _queues, Configuration: Debug Win32 ------
83>_queues : warning PRJ0009 : Build log could not be opened for writing.
83>Make sure that the file is not open by another process and is not write-protected.
83>Compiling...
83>queues.cpp
82>Linking...
82>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
82>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
82>_regexroute - 1 error(s), 1 warning(s)
84>------ Build started: Project: _pbx, Configuration: Debug Win32 ------
84>Compiling...
84>pbx.cpp
83>Linking...
83>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
83>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
83>_queues - 1 error(s), 1 warning(s)
85>------ Build started: Project: _pbxassist, Configuration: Debug Win32 ------
85>_pbxassist : warning PRJ0009 : Build log could not be opened for writing.
85>Make sure that the file is not open by another process and is not write-protected.
85>Compiling...
85>pbxassist.cpp
84>Linking...
84>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
84>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
84>_pbx - 1 error(s), 0 warning(s)
86>------ Build started: Project: Console, Configuration: Debug Win32 ------
86>Compiling...
86>main.cpp
85>Linking...
85>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
85>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\modules\BuildLog.htm"
85>_pbxassist - 1 error(s), 1 warning(s)
87>------ Build started: Project: Service, Configuration: Debug Win32 ------
87>Compiling...
87>main-service.cpp
86>Compiling resources...
86>Linking...
86>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
86>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\engine\BuildLog.htm"
86>Console - 1 error(s), 0 warning(s)
87>Compiling resources...
87>Linking...
87>LINK : fatal error LNK1181: cannot open input file '.\debug\libyate.lib'
87>Creating browse information file...
87>Microsoft Browse Information Maintenance Utility Version 8.00.50727
87>Copyright (C) Microsoft Corporation. All rights reserved.
87>Build log was saved at "file://d:\Users\Roma\Desktop\Yate\windows\Debug\BuildLog.htm"
87>Service - 1 error(s), 0 warning(s)
========== Build: 11 succeeded, 76 failed, 3 up-to-date, 0 skipped ==========