-
Notifications
You must be signed in to change notification settings - Fork 8
/
scanlog-3.6.0-2015-03-25
1320 lines (1320 loc) · 152 KB
/
scanlog-3.6.0-2015-03-25
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
0ad 0.0.18-1 Failed [GCC_ERROR] jsgcinlines.h:411:5: error: implicit conversion of nullptr constant to 'bool' [-Werror,-Wnull-conversion]
389-dsgw 1.1.11-1 Failed [GCC_ERROR] ../edit.c:30:5: error: third parameter of 'main' (environment) must be of type 'char **'
3dchess 0.8.1-18 Failed [CLANG_ERROR] clang: error: unsupported option '-fpcc-struct-return' for target 'x86_64-pc-linux-gnu'
3dldf 2.0.3+dfsg-2 Failed [GCC_ERROR] ./pspglb.web:5082:22: error: redefinition of default argument
9base 1:6-6 Failed [GCC_ERROR] n1.c:124:5: error: unterminated function-like macro invocation
9menu 1.8-6 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
9wm 1.2-9 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
abook 0.6.0~pre2-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] filter.c:754: undefined reference to `field_id'
acedb 4.9.39+dfsg.01-5 Failed [GCC_ERROR] aqlparse.l:218:6: error: conflicting types for 'yyerror'
aces3 3.0.8-4 Failed [UNKNOWN] XXX
acfax 981011-17 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
aconnectgui 0.9.0rc2-1-9 Failed [CONFIGURE_ERROR] configure: error: Sufficiently new version of libasound not found.
acpid 1:2.0.23-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: "asprintf() not found"
activiz.net 1:1.0~git20111214-2 Failed [GCC_ERROR] stddef.h:57:39: error: missing binary operator before token "("
adabrowse 4.0.3-6 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
adacgi 1.6-19 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 150 minutes of inactivity
adacontrol 1.16r11-2 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
adanaxisgpl 1.2.5.dfsg.1-6 Failed [GCC_ERROR] ./Mushcore/MushcoreSingleton.h:86:5: error: use of undeclared identifier 'SingletonPtrSet'
adasockets 1.9-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
adplug 2.2.1+dfsg3-0.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ../src/.libs/libadplug.so: undefined reference to `OPL_CALC_RH'
adun.app 0.81-6 Failed [GCC_ERROR] AdLinkedList.c:53:5: error: redefinition of a 'extern inline' function 'AdUnsafeLinkedListAdd' is not supported in C99 mode
aegis 4.24.3-3 Failed [UNKNOWN] XXX
aeskulap 0.2.2b1-13 Failed [GCC_ERROR] ./poolinstance.h:53:25: error: no function named 'remove_instance' with type 'void (const Glib::RefPtr<ImagePool::Instance> &)' was found in the specified scope
afterstep 2.2.12-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] asvector.c:290: undefined reference to `vector_find_data'
agda 2.4.0.2-2 Failed [UNKNOWN] XXX
agenda.app 0.42.2-1 Failed [GCC_ERROR] AlarmManager.m:313:9: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
agg 2.5+dfsg1-9 Failed [GCC_ERROR] ../include/agg_renderer_outline_aa.h:1378:45: error: binding of reference to type 'agg::line_profile_aa' to a value of type 'const agg::line_profile_aa' drops qualifiers
aghermann 1.0.2-1 Failed [GCC_ERROR] ./sigproc.ii:113:24: error: redefinition of default argument
ahven 2.4+repack-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
alliance 5.0-20120515-7 Failed [GCC_ERROR] elp.c:252:1: error: non-void function 'elpLotrsShrink' should return a value [-Wreturn-type]
alsa-tools 1.0.28-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] as10k1.c:524: undefined reference to `output_tram_line'
altermime 0.3.10-7 Failed [GCC_ERROR] mime_alter.c:709:13: error: variable 'newblock' is used uninitialized whenever 'if' condition is false [-Werror,-Wsometimes-uninitialized]
amideco 0.31e-3.1 Failed [GCC_ERROR] amideco.c:45:5: error: first parameter of 'main' (argument count) must be of type 'int'
analitza 4:4.14.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
anet 0.3.1-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
anfo 0.98-4 Failed [GCC_ERROR] stl_function.h:371:20: error: call to function 'operator<' that is neither visible in the template definition nor found by argument-dependent lookup
anjuta 2:3.14.0-1 Failed [GCC_ERROR] anjuta-status.c:215:30: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
antpm 1.16-8 Failed [GCC_ERROR] c++0x_warning.h:32:2: error: This file requires compiler and library support for the ISO C++ 2011 standard. This support is currently experimental, and must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
apbs 1.4-1 Failed [UNKNOWN] XXX
apertium 3.1.0-2 Failed [GCC_ERROR] hmm.cc:730:23: error: variable length array of non-POD element type 'vector<TTag>'
aplus-fsf 4.22.1-6 Failed [GCC_ERROR] ../MSTypes/MSFloatMatrix.H:30:7: error: template specialization requires 'template<>'
apophenia 0.999b+ds3-2 Failed [GCC_ERROR] apop_histogram.c:116:21: error: expected expression
apq-postgresql 3.2.0-3 Failed [UNKNOWN] XXX
apq 3.2.0-2 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
apt-cacher-ng 0.8.0-3 Failed [UNKNOWN] XXX
apt 1.0.9.7 Failed [SEGMENTATION_FAULT/TESTS_FAILURES] Tests failures
aptitude 0.6.11-1 Failed [CONFIGURE_ERROR] configure: error: in `/«PKGBUILDDIR»/build-arch'
aqemu 0.8.2-2 Failed [GCC_ERROR] VM.cpp:4566:75: error: reference to type 'const QString' could not bind to an rvalue of type 'bool'
ardour 1:2.8.16+git20131003-4 Failed [GCC_ERROR] libs/ardour/session.cc:2153:26: error: 'connecting_legal' is a protected member of 'ARDOUR::IO'
arj 3.10.22-12 Failed [UNKNOWN] XXX
ark 4:4.14.2-2 Failed [BUILDDEPS] Dependencies installation failed
ascd 0.13.2-5 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
ascdc 0.3-15 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
asclock 2.0.12-25 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
asis 2014-4 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
asmon 0.71-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] ../wmgeneral/misc.c:(.text+0x26c): undefined reference to `list_cons'
aspectc++ 1:1.2-1 Failed [GCC_ERROR] stddef.h:57: error: unexpected token `(' in conditional
aspell 0.60.7~20110707-3 Failed [GCC_ERROR] ./common/errors.hpp:17:36: error: redefinition of 'aerror_other' with a different type: 'const acommon::ErrorInfo *const' vs 'const struct AspellErrorInfo *const'
assimp 3.0~dfsg-3 Failed [GCC_ERROR] STEPFile.h:198:64: error: use 'template' keyword to treat 'To' as a dependent template name
asterisk 1:13.1.0~dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] utils.h:559: multiple definition of `_ast_calloc'
atftp 0.7.git20120829-1 Failed [GCC_ERROR] argz.c:44:8: error: redefinition of a 'extern inline' function 'argz_next' is not supported in C99 mode
atk1.0 2.14.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
atlas-cpp 0.6.2-4.1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
atlas 3.10.2-7 Failed [SEGMENTATION_FAULT] XXX
atom4 4.1-6 Failed [GCC_ERROR] ncurses/textui.cc:77:13: error: logical not is only applied to the left hand side of this comparison [-Werror,-Wlogical-not-parentheses]
ats-lang-anairiats 0.2.11-1 Failed [GCC_ERROR] bool.cats:42:5: error: expected parameter declarator
ats2-lang 0.1.8-1 Failed [SEGMENTATION_FAULT] XXX
attica-kf5 5.0.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
attica 0.4.2-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
audacity 2.0.6-2 Failed [GCC_ERROR] confbase.h:313:25: error: no matching function for call to 'wxToString'
audit 1:2.4-1 Failed [GCC_ERROR] ../../../../src/libev/ev.c:970:42: error: '_Noreturn' keyword must precede function declarator
autodock-vina 1.1.2-3 Failed [CLANG_ERROR] clang: error: unsupported option '--lto'
autodocksuite 4.2.6-2 Failed [CONFIGURE_ERROR] configure: error: in `/«PKGBUILDDIR»/autodock'
autofs 5.0.8-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] automount.c:1408: undefined reference to `dump_core'
autolog 0.40-13.1 Failed [GCC_ERROR] autolog.c:358:2: error: non-void function 'save_users' should return a value [-Wreturn-type]
autounit 0.20.1-4 Failed [GCC_ERROR] test.c:305:7: error: expected expression
avian 1.1.0-4 Failed [GCC_ERROR] src/avian/machine.h:1705:7: error: 'this' pointer cannot be null in well-defined C++ code; comparison may be assumed to always evaluate to false [-Werror,-Wtautological-undefined-compare]
avifile 1:0.7.48~20090503.ds-16.2 Failed [GCC_ERROR] common/avm_output.cpp:20:12: error: qualified reference to 'AvmOutput' is a constructor name rather than a type wherever a constructor can be declared
awardeco 0.2-3.1 Failed [GCC_ERROR] awardeco.c:37:5: error: first parameter of 'main' (argument count) must be of type 'int'
axis2c 1.6.0-6 Failed [GCC_ERROR] string.c:68:24: error: comparison of unsigned expression < 0 is always false [-Werror,-Wtautological-compare]
ball 1.4.2+20140406-1 Failed [GCC_ERROR] string.h:1001:24: error: friend declaration specifying a default argument must be a definition
baloo-widgets 4:4.14.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
baloo 4:4.14.2-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
bandwidthd 2.0.1+cvs20090917-7 Failed [CLANG_ERROR/CLANG_LD_ERROR] bandwidthd.c:696: undefined reference to `Credit'
banshee-community-extensions 2.4.0-4 Failed [GCC_ERROR] ./FloatingAverage.h:86:28: error: reference to non-static member function must be called
bash 4.3-12 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
batctl 2014.3.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
batmand 0.3.2-15 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
baycomepp 0.10-12.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] sysdeps.h:214: multiple definition of `gettime'
baycomusb 0.10-12.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] sysdeps.h:137: multiple definition of `gettime'
bbrun 1.6-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] misc.c:122: undefined reference to `list_cons'
bcache-tools 1.0.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] make-bcache.c:277: undefined reference to `crc64'
beignet 0.9.3~really.0.8+dfsg-1 Failed [GCC_ERROR] gen_insn_selection.cpp:2404:22: error: variable length array of non-POD element type 'gbe::GenRegister'
berusky2 0.10-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] box.cpp:89: undefined reference to `mmalloc'
bibledit-gtk 4.6-1 Failed [GCC_ERROR] mainwindow.cpp:195:25: error: extern declaration of 'accelerator_group' follows non-extern declaration
bind-dyndb-ldap 6.0-4 Failed [GCC_ERROR] ../../src/fwd_register.c:53:6: error: comparison of nonnull parameter 'fwdrp' equal to a null pointer is false on first encounter [-Werror,-Wtautological-pointer-compare]
binutils-arm-none-eabi 5 Failed [UNKNOWN] dh_auto_test: make -j10 check returned exit code 2
binutils-avr 2.24+Atmel3.4.4-1 Failed [BUILD_TIMEOUT] checking whether compiler driver understands Ada Build killed with signal TERM after 222 minutes of inactivity
binutils-h8300-hms 2.16.1-10 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 188 minutes of inactivity
binutils-m68hc1x 1:2.18-3.3 Failed [BUILD_TIMEOUT] checking whether compiler driver understands Ada Build killed with signal TERM after 155 minutes of inactivity
binutils-mingw-w64 5.2 Failed [GCC_ERROR] ../../../upstream/libiberty/../include/libiberty.h:624:12: error: expected parameter declarator
binutils-msp430 2.22~msp20120406-5 Failed [BUILD_TIMEOUT] checking whether compiler driver understands Ada Build killed with signal TERM after 151 minutes of inactivity
binutils-z80 4 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 188 minutes of inactivity
biococoa 2.2.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] BCScoreMatrix.m:(.text+0x1fd): undefined reference to `objc_msg_lookup_super'
bird 1.4.5-1 Failed [GCC_ERROR] netlink.c:632:10: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
birdfont 1.7-1 Failed [GCC_ERROR] build/libbirdfont/PenTool.c:2106:2: error: non-void function 'bird_font_pen_tool_remove_point_simplify' should return a value [-Wreturn-type]
blackbox 0.70.1-23 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
blas 1.2.20110419-10 Failed [UNKNOWN] XXX
blitz++ 1:0.10-3.2 Failed [GCC_ERROR] ../blitz/array/expr.h:111:26: error: implicit instantiation of undefined template 'blitz::FastTV2Iterator<int, 2>'
blktap 2.0.90-3 Failed [GCC_ERROR] libvhd.c:1073:2: error: indirection of non-volatile null pointer will be deleted, not trap [-Werror,-Wnull-dereference]
blobwars 1.19-2 Failed [GCC_ERROR] src/player.cpp:293:34: error: equality comparison with extraneous parentheses [-Werror,-Wparentheses-equality]
bluemon 1.4-6 Failed [GCC_ERROR] bluetooth-monitor.c:299:10: error: non-void function 'get_link_qual' should return a value [-Wreturn-type]
bobcat 3.23.01-1 Failed [GCC_ERROR] tmp/bobcat/fswap:90:12: error: 'Xch' is a private member of 'FBB::FSwap'
bogl 0.1.18-9 Failed [GCC_ERROR] bogl-font.c:84:3: error: function definition is not allowed here
bognor-regis 0.6.12+git20101007.02c25268-9 Failed [GCC_ERROR] bognor-upnp-cp.c:117:9: error: non-void function 'make_device_description' should return a value [-Wreturn-type]
boinc 7.4.23+dfsg-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/«BUILDDIR»/boinc-7.4.23+dfsg'
bomberclone 0.11.9-4 Failed [GCC_ERROR] ../include/gfx.h:108:20: error: inline function 'gfx_blitupdaterectclear' is not defined [-Werror,-Wundefined-inline]
booth 0.1.0-1.1 Failed [CLANG_ERROR] error: unknown warning option '-Wunsigned-char' [-Werror,-Wunknown-warning-option]
bootpc 0.64-7 Failed [GCC_ERROR] ./log.h:6:15: error: redefinition of 'log' as different kind of symbol
boswars 2.7-1 Failed [BUILDDEPS] Dependencies installation failed
brasero 3.11.4-1.1 Failed [GCC_ERROR] brasero-misc.c:115:11: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
busybox 1:1.22.0-15 Failed [CLANG_ERROR/CLANG_LD_ERROR] tar.c:1180: undefined reference to `unpack_Z_stream'
bwbasic 2.20pl2-11 Failed [GCC_ERROR] bwx_tty.c:69:1: error: 'main' must return 'int'
bwm-ng 0.6-3.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] bwm-ng.c:212: undefined reference to `get_iface_stats'
byzanz 0.3.0+git20140619-1 Failed [CLANG_ERROR] error: unknown warning option '-Wunsafe-loop-optimizations'; did you mean '-Wunavailable-declarations'? [-Werror,-Wunknown-warning-option]
bzflag 2.4.2+ds1-5 Failed [GCC_ERROR] ../../include/VotingArbiter.h:234:56: error: addition of default argument on redeclaration makes this constructor a default constructor
cain 1.9-8 Failed [GCC_ERROR] ../numerical/random/discrete/DgPmfAndSumOrderedPairPointer.h:47:16: error: dependent using declaration resolved to type without 'typename'
camlimages 1:4.0.1-8 Failed [GCC_ERROR] jpegread.c:420:3: error: non-void function 'read_jpeg_scanlines' should return a value [-Wreturn-type]
canna 3.7p3-13 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
casablanca 2.4.0-2 Failed [GCC_ERROR/CLANG_ERROR] basic_types.h:28:10: fatal error: 'string' file not found
cattle-1.0 1.2.0-1 Failed [GCC_ERROR] cattle-buffer.c:241:2: error: non-void function 'cattle_buffer_get_value' should return a value [-Wreturn-type]
ccseapps 2.5-5 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 153 minutes of inactivity
cctools 4.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lperl
cdebootstrap 0.6.4 Failed [GCC_ERROR] ../../../../src/frontend/standalone/message.c:76:12: error: unused function 'unused' [-Werror,-Wunused-function]
cenon.app 4.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] PerformanceMap.m:752: undefined reference to `objc_msg_lookup_super'
ceph 0.80.7-2 Failed [GCC_ERROR] key_value_store/kv_flat_btree_async.cc:1123:40: error: variable length array of non-POD element type 'librados::ObjectWriteOperation'
cernlib 20061220+dfsg3-4.1 Failed [UNKNOWN] XXX
cfengine3 3.6.2-4 Failed [GCC_ERROR] ../libutils/deprecated.h:41:5: error: expected parameter declarator
cgal 4.5-2 Failed [TESTS_FAILURES] Tests failures
cgit 0.10.2.git2.0.1-3 Failed [GCC_ERROR] ../filter.c:385:10: error: no member named '__fprintf_chk' in 'struct cgit_filter'
charmap.app 0.3~rc1-2 Failed [GCC_ERROR] Controller.m:254:14: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
chasen 2.4.5-21 Failed [GCC_ERROR] print.c:186:16: error: expected parameter declarator
cheese 3.14.1-2 Failed [GCC_ERROR] src/cheese-window.c:617:162: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
chiark-tcl 1.1.3 Failed [GCC_ERROR] writeable.c:78:15: error: variable 'hd' is uninitialized when used here [-Werror,-Wuninitialized]
chimera2 2.0a19-8 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
cigi-ccl 3.3.3a+svn818-8 Failed [UNKNOWN] dh_install: libcigicl-dev missing files (usr/lib/*/pkgconfig/*), aborting
cinnamon-session 2.2.2-5 Failed [GCC_ERROR] csm-dbus-client.c:131:39: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
cinnamon 2.2.16-5 Failed [GCC_ERROR] st/st-background-effect.c:240:28: error: invalid suffix 'd' on floating constant
clam-networkeditor 1.4.0-3.1 Failed [GCC_ERROR] TypeInfo.hxx:30:27: error: no type named 'type_info' in namespace 'std'
clam 1.4.0-6 Failed [GCC_ERROR] scons/libs/core/include/CLAM/TypeInfo.hxx:30:27: error: no type named 'type_info' in namespace 'std'
clamfs 1.0.1-1.1 Failed [GCC_ERROR] string.h:734:35: error: friend declaration specifying a default argument must be a definition
clearsilver 0.10.5-1.4 Failed [GCC_ERROR] neo_files.c:219:12: error: expected expression
clementine 1.2.3+dfsg-2 Failed [GCC_ERROR] type_traits:279:39: error: use of undeclared identifier '__float128'
clisp 1:2.49-10 Failed [CLANG_ERROR] clang: error: clang frontend command failed with exit code 70 (use -v to see invocation)
cloop 3.14.1.1 Failed [CONFIGURE_ERROR] configure: error: C compiler cannot create executables
clutter-1.0 1.20.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
clutter-gesture 0.0.2.1-7 Failed [CLANG_ERROR] error: unknown warning option '-Werror=unused-but-set-variable'; did you mean '-Werror=unused-const-variable'? [-Werror,-Wunknown-warning-option]
cmdpack 1.03-1 Failed [GCC_ERROR] src/banner.h:7:2: error: embedding a #include directive within macro arguments is not supported
cmocka 0.4.1-2 Failed [BUILDDEPS] Dependencies installation failed
codeblocks 13.12-3 Failed [GCC_ERROR] ../../src/include/cbthreadpool.h:140:33: error: exception specification is not available until end of class definition
coinor-flopc++ 1.0.6-3.1 Failed [GCC_ERROR] ./MP_domain.hpp:180:18: error: return type of virtual function 'getSet' is not covariant with the return type of the function it overrides ('flopc::MP_set_base' is incomplete)
collectd 5.4.1-6 Failed [GCC_ERROR] curl_xml.c:388:24: error: comparison of array 'vl->type_instance' equal to a null pointer is always false [-Werror,-Wtautological-pointer-compare]
comedilib 0.10.2-2 Failed [CLANG_ERROR] clang: error: clang frontend command failed with exit code 70 (use -v to see invocation)
condor 8.2.3~dfsg.1-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: CMakeFiles/gce_gahp.dir/io_loop_pthread.cpp.o: undefined reference to symbol 'pthread_create@@GLIBC_2.2.5'
cone 0.89-1 Failed [GCC_ERROR] cursesmessage.C:3764:18: error: cannot create a non-constant pointer to member function
contextfree 3.0.5+dfsg1-2.2 Failed [GCC_ERROR] src-common/CmdInfo.cpp:63:50: error: cannot initialize a parameter of type 'UIDtype *' (aka 'unsigned long *') with an rvalue of type 'const UIDtype *' (aka 'const unsigned long *')
cook 2.33-1 Failed [UNKNOWN] XXX
courier 0.73.1-1.6 Failed [GCC_ERROR] ./webmlmd.H:52:12: error: elaborated type refers to a typedef
cpl-plugin-amber 4.3.1+dfsg-1 Failed [GCC_ERROR] amber_ascii_export.c:498:23: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
cpl-plugin-hawki 1.8.14+dfsg-2 Failed [GCC_ERROR] hawki_cal_zpoint.c:566:51: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
cpl-plugin-kmos 1.3.5+dfsg-1 Failed [UNKNOWN] dh_auto_test: make -j1 check returned exit code 2
cpl-plugin-muse 1.0.1+dfsg-1 Failed [BUILDDEPS] DEPS
cpl-plugin-vimos 2.9.15+dfsg-1 Failed [BUILDDEPS] DEPS
cpl-plugin-xshoo 2.5.2+dfsg-1 Failed [GCC_ERROR] xsh_model_io.c:691:35: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
cpputest 3.4-3 Failed [GCC_ERROR] ././include/CppUTest/MemoryLeakDetectorNewMacros.h:54:9: error: keyword is hidden by macro definition [-Werror,-Wkeyword-macro]
cqrlib 1.1.2-2.1 Failed [GCC_ERROR] ./cqrlib.h:576:30: error: member reference base type 'CPPQR<DistanceType, VectorType, MatrixType> *' is not a structure or union
crash 7.0.8-1 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 153 minutes of inactivity
crda 3.13-1 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
crimson 0.5.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] path.h:76: undefined reference to `vtable for Path'
criu 1.3.1-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '-Wa,--noexecstack'
cronutils 1.8-1 Failed [GCC_ERROR] runstat.c:79:31: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
crtmpserver 1.0~dfsg-5 Failed [GCC_ERROR/CLANG_ERROR] <command line>:23:10: fatal error: 'common' file not found
csound 1:6.03.2~dfsg-1 Failed [UNKNOWN] XXX
cssc 1.4.0-1 Failed [SEGMENTATION_FAULT] dh_auto_test: make -j10 check returned exit code 2
ctpp2 2.8.3-15 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
ctwm 3.7-3.3 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
cuba 3.0+20111124-2 Failed [GCC_ERROR] ./src/vegas/Integrate.c:17:15: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
cupt 2.8.4 Failed [GCC_ERROR] solution.cpp:368:34: error: default initialization of an object of const type 'const cupt::internal::BrokenSuccessorMap' without a user-provided default constructor
cvc3 2.4.1-5 Failed [GCC_ERROR] ./minisat_global.h:154:43: error: implicit instantiation of undefined template 'MiniSat::STATIC_ASSERTION_FAILURE<false>'
cvs 2:1.12.13+real-15 Failed [BUILDDEPS] Dependencies installation failed
cwidget 0.5.17-2 Failed [GCC_ERROR] ../../../src/cwidget/config/keybindings.h:42:5: error: 'key' defined as a struct here but previously declared as a class [-Werror,-Wmismatched-tags]
cxref 1.6e-1 Failed [UNKNOWN] mv: cannot stat 'README.c.tex': No such file or directory
cyphesis-cpp 0.6.0-3 Failed [GCC_ERROR] stream.h:306:19: error: no member named 'm_poly' in 'WFMath::Polygon<2>'
dacs 1.4.28b-3 Failed [UNKNOWN] XXX
dahdi-tools 1:2.10.0.1-1 Failed [GCC_ERROR] astribank_usb.c:37:19: error: unused variable 'rcsid' [-Werror,-Wunused-const-variable]
davix 0.4.0-1 Failed [TESTS_FAILURES] Tests failures
db5.3 5.3.28-9 Failed [GCC_ERROR/TESTS_FAILURES] ../src/dbinc/atomic.h:179:19: error: definition of builtin function '__atomic_compare_exchange'
db 5.1.29-9 Failed [GCC_ERROR] ../src/dbinc/atomic.h:179:19: error: definition of builtin function '__atomic_compare_exchange'
dballe 6.8-1 Failed [GCC_ERROR] cmdline/cmdline.cc:179:37: error: comparison between pointer and integer ('const char *' and 'int')
dbus-c++ 0.9.0-6 Failed [GCC_ERROR] ../../include/dbus-c++/dispatcher.h:259:5: error: no matching function for call to '_init_threading'
dbusada 0.3-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
dcap 2.47.9-3 Failed [GCC_ERROR] ./util.h:14:12: error: expected parameter declarator
dclock 2.2.2-8 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
ddccontrol 0.4.2-11 Failed [CLANG_ERROR/CLANG_LD_ERROR] i2c-algo-bit.c:507: undefined reference to `readbytes'
ddd 1:3.3.12-5 Failed [GCC_ERROR] strclass.h:813:19: error: friend declaration specifying a default argument must be a definition
dds 2.5.2+ddd105-1 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
deborphan 1.7.28.8-0.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] deborphan.c:378: undefined reference to `strhash'
debram 1.0.3-0.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] conv.c:131: undefined reference to `unlat1'
devil 1.7.8-9 Failed [CLANG_ERROR] error: invalid argument '-std=gnu99' not allowed with 'C++/ObjC++'
dh-ada-library 6.3 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
dia-newcanvas 0.6.10-5.4 Failed [GCC_ERROR] dia-canvas-view-gdk.c:181:28: error: implicit conversion from enumeration type 'GdkFill' to different enumeration type 'GdkFillRule' [-Werror,-Wenum-conversion]
diagnostics 0.3.3-10 Failed [GCC_ERROR/TESTS_FAILURES] ../../diagnostics/util/to_string.hpp:59:8: error: call to function 'operator<<' that is neither visible in the template definition nor found by argument-dependent lookup
dico 2.2-8 Failed [GCC_ERROR] tree.c:1044:4: error: non-void function 'node_reduce' should return a value [-Wreturn-type]
dicom3tools 1.00~20140902075059-1 Failed [GCC_ERROR] ./Imakefile:171:3: error: invalid preprocessing directive
dietlibc 0.33~cvs20120325-6 Failed [GCC_ERROR] x86_64/strcpy.S:2:8: error: alignment must be a power of 2
din 5.2.1-3 Failed [GCC_ERROR] main.cc:296:49: error: non-aggregate type 'const color' cannot be initialized with an initializer list
direwolf 1.1-2 Failed [GCC_ERROR] kiss.c:958:2: error: non-void function 'kiss_listen_thread' should return a value [-Wreturn-type]
diskscan 0.14.1-6 Failed [GCC_ERROR] src/cdb.c:35:20: error: unused function 'set_uint64' [-Werror,-Wunused-function]
distcc 3.1-6.1 Failed [GCC_ERROR] src/snprintf.h:30:5: error: expected parameter declarator
dmapi 2.2.10-1 Failed [UNKNOWN] XXX
dmtcp 2.3.1-6 Failed [GCC_ERROR] event/eventwrappers.cpp:70:16: error: redefinition of a 'extern inline' function 'poll' is not supported in C++
dnaclust 3-2 Failed [GCC_ERROR] ./multi_dim.hpp:62:8: error: no matching constructor for initialization of 'std::range_error'
docker.io 1.3.3~dfsg1-2 Failed [UNKNOWN] XXX
dosbox 0.74-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
doxymacs 1.8.0-6.1 Failed [CLANG_ERROR] clang: error: optimization flag '-fexpensive-optimizations' is not supported
dsbltesters 0.9.5-4 Failed [GCC_ERROR] httptest.c:41:7: error: conflicting types for 'getline'
dsniff 2.4b1+debian-22.1 Failed [GCC_ERROR] ./sshmitm.c:45:21: error: redefinition of 'csin' as different kind of symbol
dvi2dvi 2.0alpha-9.2 Failed [GCC_ERROR] dviconv.c:119:7: error: non-void function 'dviconv' should return a value [-Wreturn-type]
dvi2ps 5.1j-1.2 Failed [GCC_ERROR] virfont.c:320:2: error: non-void function 'vf_mc' should return a value [-Wreturn-type]
dwb 20140702hg-2 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--ansi'
dx 1:4.4.4-7 Failed [GCC_ERROR] lock.c:939:2: error: non-void function 'DXunlock' should return a value [-Wreturn-type]
dymo-cups-drivers 1.4.0-5 Failed [GCC_ERROR] TestAssert.h:61:13: error: call to function 'operator<<' that is neither visible in the template definition nor found by argument-dependent lookup
dynalogin 1.0.0-3 Failed [GCC_ERROR] dynalogind.c:79:3: error: non-void function 'read_line' should return a value [-Wreturn-type]
ebview 0.3.6.2-1.3 Failed [GCC_ERROR] dialog.c:28:14: error: redefinition of 'g_message' as different kind of symbol
efivar 0.15-3 Failed [GCC_ERROR/CLANG_ERROR] efivar.h:82:6: error: use of unknown builtin '__builtin_va_arg_pack_len' [-Wimplicit-function-declaration]
einspline 0.9.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] time_multi.c:107: undefined reference to `eval_UBspline_1d_s_vg'
eiskaltdcpp 2.2.9-3 Failed [GCC_ERROR] HubFrame.cpp:775:29: error: addition of default argument on redeclaration makes this constructor a default constructor
ekg2 1:0.4~pre+20120506.1-8 Failed [GCC_ERROR] Makefile.am:144: error: 'plugins/autoresponder/autoresponder.la' is not a standard libtool library name
elfutils 0.159-4.2 Failed [GCC_ERROR] elf_begin.c:1033:3: error: function definition is not allowed here
elmerfem 6.1.0.svn.5396.dfsg2-4 Failed [GCC_ERROR] fft.c:473:9: error: non-void function 'FFTInit' should return a value [-Wreturn-type]
ember 0.6.2+dfsg-2.1 Failed [GCC_ERROR] CEGUIWindowFactoryManager.h:486:9: error: cannot catch reference to incomplete type 'CEGUI::Exception'
empire-lafe 1.1-1 Failed [GCC_ERROR] ./lafe.h:10:14: error: redefinition of 'log' as different kind of symbol
encfs 1.7.4-5 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/«PKGBUILDDIR»'
enemylines3 1.2-7 Failed [GCC_ERROR] ./generators/generators.h:2:7: error: forward declaration of class cannot have a nested name specifier
epiphany-browser 3.14.1-1 Failed [GCC_ERROR] ephy-sqlite-connection.c:63:56: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
ergo 3.4.0-1 Failed [BUILD_TIMEOUT/TESTS_FAILURES] Build killed with signal TERM after 150 minutes of inactivity
eris 1.3.21-0.1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
eso-midas 13.09pl1.4-1 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ccdmosaic.c:224: undefined reference to `sorti'
esperanza 0.4.0+git20091017-3 Failed [GCC_ERROR] coll.h:615:6: error: binding of reference to type 'Xmms::Coll::Coll' to a value of type 'const Xmms::Coll::Coll' drops qualifiers
esys-particle 2.3-2 Failed [GCC_ERROR] ./SphAggGougeBlock.hpp:39:37: error: no viable conversion from '__normal_iterator<const_pointer, [...]>' to '__normal_iterator<pointer, [...]>'
eterm 0.9.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./.libs/libEterm.so: undefined reference to `blank_screen_mem'
etl 0.04.17-1 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 150 minutes of inactivity
eurephia 1.1.0-4 Failed [GCC_ERROR] eurephiadm.c:203:47: error: function definition is not allowed here
evince 3.14.1-2 Failed [GCC_ERROR] synctex_parser_utils.c:106:29: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
exactimage 0.8.9-7 Failed [GCC_ERROR] agg_renderer_outline_aa.h:1378:45: error: binding of reference to type 'agg::line_profile_aa' to a value of type 'const agg::line_profile_aa' drops qualifiers
excellent-bifurcation 0.0.20071015-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] display_init.c:(.text+0x3f88): undefined reference to `xpart'
ext3grep 0.10.1-3.2 Failed [GCC_ERROR] ./is_blockdetection.h:46:33: error: no member named 'memset' in namespace 'std'; did you mean simply 'memset'?
extundelete 0.2.4-1 Failed [GCC_ERROR] extundelete.cc:1271:28: error: non-constant-expression cannot be narrowed from type 'int' to 'ext2_ino_t' (aka 'unsigned int') in initializer list [-Wc++11-narrowing]
eztrace 1.0.6-4 Failed [GCC_ERROR] ../../../../src/modules/mpi/eztrace_convert_mpi.c:1663:6: error: conflicting types for 'mpi_synchronize_processes'
fact++ 1.6.2~dfsg-2 Failed [CLANG_ERROR] clang: error: unknown argument: '-ftree-loop-linear'
fairymax 4.8v-1 Failed [GCC_ERROR] fairymax.c:438:21: error: void function 'PrintVariants' should not return a value [-Wreturn-type]
fakechroot 2.17.2-1 Failed [GCC_ERROR] ./libfakechroot.h:211:5: error: expected parameter declarator
faketime 0.9.6-4 Failed [GCC_ERROR] libfaketime.c:513:8: error: comparison of nonnull parameter 'buf' not equal to a null pointer is true on first encounter [-Werror,-Wtautological-pointer-compare]
fceux 2.2.2+dfsg0-1 Failed [GCC_ERROR] src/utils/endian.h:85:2: error: cannot combine with previous 'typedef' declaration specifier
fcitx 1:4.2.8.5-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
fcoe-utils 1.0.29+git20140505-1 Failed [GCC_ERROR] lib/sa_log.c:73:28: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
fdclone 3.01b-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] sigset.h:117: multiple definition of `__sigaddset'
felix-latin 2.0-7 Failed [BUILDDEPS] Dependencies installation failed
ferret-vis 6.9-2 Failed [GCC_ERROR] grab_image_xwd.c:313:2: error: non-void function 'Window_Dump' should return a value [-Wreturn-type]
ffindex 0.9.9.3-2 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
fftw3 3.3.4-2 Failed [GCC_ERROR] openmp.c:26:2: error: OpenMP enabled but not using an OpenMP compiler
fhist 1.18-1 Failed [GCC_ERROR] common/input.c:34:1: error: redefinition of a 'extern inline' function 'input_name' is not supported in C99 mode
filtergen 0.12.4-5.1 Failed [GCC_ERROR] fg-iptables.c:338:2: error: use of GNU old-style field designator extension [-Werror,-Wgnu-designator]
fis-gtm 6.2-000-1 Failed [GCC_ERROR] pseudo_ret.s:13:2: error: unknown directive
flexc++ 2.01.00-2 Failed [GCC_ERROR] fswap:90:12: error: 'Xch' is a private member of 'FBB::FSwap'
flightcrew 0.7.2+dfsg-1 Failed [GCC_ERROR] LocationAwareDOMParser.cpp:32:49: error: default initialization of an object of const type 'const XercesExt::LocationInfoDataHandler' without a user-provided default constructor
flintqs 20070817-1 Failed [GCC_ERROR] QS.cpp:1566:5: error: second parameter of 'main' (argument array) must be of type 'char **'
floatbg 1.0-28 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
flow-tools 1:0.68-12.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ftfil.c:3094: undefined reference to `eval_match_src_as'
flush 0.9.12-3.1 Failed [GCC_ERROR] format.cpp:180:28: error: call to '_F' is ambiguous
fotoxx 14.10.2-1 Failed [GCC_ERROR] f.repair.cc:1834:5: error: functions that differ only in their return type cannot be overloaded
foundry 0.0.20130809-2 Failed [GCC_ERROR] ./parse_tree.hpp:60:1: error: 'node_visitor' defined as a class here but previously declared as a struct [-Werror,-Wmismatched-tags]
fractalnow 0.8.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
freebsd-glue 0.2.20 Failed [CLANG_ERROR] error: unknown warning option '-Werror=maybe-uninitialized'; did you mean '-Werror=uninitialized'? [-Werror,-Wunknown-warning-option]
freebsd-libs 10.1~svn273304-1 Failed [GCC_ERROR] ./libutil.h:62:9: error: unknown type name '__size_t'; did you mean '__ssize_t'?
freecdb 0.75 Failed [CLANG_ERROR/CLANG_LD_ERROR] cdbmake.c:59: undefined reference to `getch'
freecontact 1.0.21-3 Failed [CLANG_ERROR] clang: error: unsupported option '--help=optimizers'
freecraft 1:1.20-1.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] stdafx.h:90: multiple definition of `MulDiv'
freedroidrpg 0.15.1-1 Failed [GCC_ERROR] quest_browser_ui.c:609:4: error: function definition is not allowed here
freefem3d 1.0pre10-3.2 Failed [GCC_ERROR/CLANG_ERROR] libtool.m4: error: problem compiling CXX test program
freefoam 0.1.0+dfsg+1-3 Failed [GCC_ERROR] Pstream.H:518:29: error: no function named 'reduce' with type 'void (scalar &, const sumOp<scalar> &)' was found in the specified scope
freehdl 0.0.8-2.1 Failed [GCC_ERROR] ../freehdl/std-vhdl-types.hh:1486:58: error: called object type 'uchar' (aka 'unsigned char') is not a function or function pointer
freeipmi 1.4.5-3 Failed [CLANG_ERROR] clang: error: no such file or directory: 'libipmiconsole.3'
freetuxtv 0.6.6~dfsg1-1 Failed [GCC_ERROR] gtk-libvlc-media-player.c:1822:2: error: non-void function 'gtk_libvlc_media_player_get_state' should return a value [-Wreturn-type]
freetype 2.5.2-4 Failed [GCC_ERROR] ./builds/unix/ftconfig.h:532:5: error: 'long long' is an extension when C99 mode is not enabled [-Werror,-Wlong-long]
fribidi 0.19.6-3 Failed [GCC_ERROR] fribidi-char-sets-cap-rtl.c:109:6: error: expected expression
frozen-bubble 2.212-4 Failed [CLANG_ERROR] clang: error: -lglib-2.0: 'linker' input unused
fsvs 1.2.5-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/«PKGBUILDDIR»'
fte 0.50.2b6-2 Failed [GCC_ERROR] con_linux.cpp:434:12: error: variable length array of non-POD element type 'TCell'
fusioninventory-agent 1:2.3.10.1-1 Failed [BUILDDEPS] Dependencies installation failed
fuzzylite 5.0+dfsg-3 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
fvwm1 1.24r-56 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
fvwm 1:2.6.5.ds-4 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: "
fweb 1.62-12 Failed [GCC_ERROR] ./t_type.h:53:5: error: second parameter of 'main' (argument array) must be of type 'char **'
galib 2.4.7-3.1 Failed [GCC_ERROR] ../../ga/../ga/GA1DArrayGenome.C:225:3: error: use of undeclared identifier 'initializer'
gambas3 3.5.4-2 Failed [GCC_ERROR] gb_error.c:94:3: error: function definition is not allowed here
game-music-emu 0.5.5-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
gamera 3.4.1+svn1423-4 Failed [CLANG_ERROR] error: invalid integral value 'g' in '-Og'
gamin 0.1.10-4.1 Failed [GCC_ERROR] gam_eq.c:127:3: error: non-void function 'gam_eq_flush' should return a value [-Wreturn-type]
ganeti 2.12.0-3 Failed [CLANG_ERROR] clang: error: -Wl,--hash-size=31: 'linker' input unused
garden-of-coloured-lights 1.0.8-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] enemy.c:4421: undefined reference to `ypart'
gargoyle-free 2011.1a-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] terps/nitfol/op_math.c:(.text+0x2d): undefined reference to `set_var'
gbatnav 1.0.4cvs20051004-5 Failed [GCC_ERROR] play.c:509:3: error: non-void function 'lookup_funcion' should return a value [-Wreturn-type]
gbsplay 0.0.91-1 Failed [UNKNOWN] XXX
gcc-3.3 1:3.3.6ds1-27.2 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 150 minutes of inactivity
gcc-4.4 4.4.7-8 Failed [GCC_ERROR] ../../src/gcc/toplev.c:536:1: error: redefinition of a 'extern inline' function 'floor_log2' is not supported in C99 mode
gcc-arm-none-eabi 11-1 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 154 minutes of inactivity
gcc-h8300-hms 1:3.4.6+dfsg2-4 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 151 minutes of inactivity
gcc-m68hc1x 1:3.3.6+3.1+dfsg-3 Failed [BUILD_TIMEOUT] checking for compiler driver that understands Ada Build killed with signal TERM after 151 minutes of inactivity
gcc-mingw-w64 15.1 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 155 minutes of inactivity
gcc-snapshot 20150319-1 Failed [CONFIGURE_ERROR] configure: error: GNAT is required to build ada
gccxml 0.9.0+git20140716-2 Failed [GCC_ERROR] gengtype-lex.l:594:31: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
gcin 2.8.2+dfsg1-1 Failed [GCC_ERROR/CLANG_ERROR] ./chewing.h:4:10: fatal error: 'chewing/chewing.h' file not found
gcl 2.6.12-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] typespec.c:(.text+0x0): multiple definition of `m__gmpz_add'
gdal 1.10.1+dfsg-8 Failed [GCC_ERROR] gdal_wrap.cpp:4494:12: error: assigning to 'char *' from incompatible type 'const char *'
gdb-arm-none-eabi 6 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 153 minutes of inactivity
gdb-avr 7.7-2 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 171 minutes of inactivity
gdb-mingw-w64 9 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 155 minutes of inactivity
gdb-msp430 7.2a~mspgcc-20111205-3 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 151 minutes of inactivity
gdb 7.7.1+dfsg-5 Failed [GCC_ERROR] libiberty.h:616:12: error: expected parameter declarator
gdcm 2.4.4-3 Failed [GCC_ERROR] stddef.h:57:39: error: missing binary operator before token "("
gdis 0.90-5 Failed [BUILDDEPS] Dependencies installation failed
geant321 1:3.21.14.dfsg-11 Failed [UNKNOWN] XXX
gegl 0.2.0-7 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
geis 2.2.16-1 Failed [GCC_ERROR] geis_backend_multiplexor.c:34:24: error: unused variable 'cbib_initial_size' [-Werror,-Wunused-const-variable]
geki2 2.0.3-9 Failed [GCC_ERROR] ranking.c:18:5: error: non-void function 'ScoreRanking' should return a value [-Wreturn-type]
geki3 1.0.3-8 Failed [GCC_ERROR] ranking.c:18:5: error: non-void function 'ScoreRanking' should return a value [-Wreturn-type]
gem 1:0.93.3-8 Failed [GCC_ERROR] gemlist_info.cpp:37:42: error: addition of default argument on redeclaration makes this constructor a default constructor
genius 1.0.19-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] gtkplot3d.c:2051: undefined reference to `roundint'
geographiclib 1.37-3 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
geomview 1.9.4-4.1 Failed [BUILDDEPS] Dependencies installation failed
geotranz 3.3-1 Failed [GCC_ERROR] ../../GEOTRANS3/java_gui/geotrans3/jni/JNICCSObjectTranslator.h:14:7: error: forward declaration of class cannot have a nested name specifier
getfem++ 4.2.1~beta1~svn4635~dfsg-3 Failed [GCC_ERROR] ../superlu/slu_ddefs.h:140:16: error: conflicting types for 'countnz'
gfal2 2.7.8-2 Failed [GCC_ERROR] davfile.hpp:75:17: error: no type named 'shared_ptr' in namespace 'std'
gforth 0.7.2+dfsg1-1.1 Failed [UNKNOWN] XXX
gfpoken 1-2 Failed [GCC_ERROR] :681:3: error: non-void function 'leveldraw_drag_end' should return a value [-Wreturn-type]
ggcov 0.9-6 Failed [TESTS_FAILURES] Tests failures
ghc 7.6.3-20 Failed [UNKNOWN] ghc/ghc.mk:106: ghc/stage1/package-data.mk: No such file or directory
ghemical 3.0.0-1 Failed [GCC_ERROR] ./project.h:210:14: error: friend declaration specifying a default argument must be a definition
ghex 3.10.1-1 Failed [GCC_ERROR] chartable.c:189:28: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
ghostscript 9.06~dfsg-2 Failed [GCC_ERROR] ./base/gsdevice.c:1012:25: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
giftrans 1.12.2-18 Failed [UNKNOWN] XXX
gimp-plugin-registry 7.20140602 Failed [GCC_ERROR] ./refinerThreaded.h:298:3: error: function definition is not allowed here
gitg 0.2.7-3 Failed [GCC_ERROR] gitg-debug.c:66:27: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
givaro 3.7.2-1 Failed [GCC_ERROR/TESTS_FAILURES] ../src/library/poly1/givaro/givpoly1kara.inl:36:35: error: read-only variable is not assignable
glib2.0 2.42.1-1 Failed [UNKNOWN] XXX
glibmm2.4 2.42.0-1 Failed [SEGMENTATION_FAULT] XXX
gltron 0.70final-12 Failed [GCC_ERROR] ../../nebu/include/filesystem/nebu_filesystem.h:1:9: error: 'NEBU_FILE_SYSTEM_H' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard]
glusterfs 3.5.2-2 Failed [BUILDDEPS] Dependencies installation failed
gmerlin 1.2.0~dfsg+1-4 Failed [GCC_ERROR] bgyadif.c:769:9: error: ambiguous instructions require an explicit suffix (could be 'cmpb', 'cmpw', 'cmpl', or 'cmpq')
gmfsk 0.6+0.7pre1-2.3 Failed [CLANG_ERROR/CLANG_LD_ERROR] misc.h:180: multiple definition of `clamp'
gmic 1.6.0.1-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-fno-ipa-sra'
gnac 0.2.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] profiles/gnac-profiles-default.c:(.text+0x1ac): undefined reference to `libgnac_critial_real'
gnash 0.8.11~git20140708-3 Failed [GCC_ERROR] agg_scanline_u.h:476:30: error: type 'base_type' (aka 'agg::scanline_u8') is not a direct or virtual base of 'scanline32_u8_am<AlphaMask>'
gnat-4.9 4.9.2-1 Failed [CONFIGURE_ERROR] configure: error: GNAT is required to build ada
gnat-gps 5.3dfsg-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
gnat-mingw-w64 15 Failed [CONFIGURE_ERROR] configure: error: GNAT is required to build ada
gnats 4.1.0-3 Failed [GCC_ERROR] ./gnats.h:140:12: error: conflicting types for 'asprintf'
gngb 20060309-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] interrupt.c:237: undefined reference to `get_nb_spr'
gnokii 0.6.30+dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] xgnokii.c:1187: undefined reference to `GUI_HideAbout'
gnome-applets 3.8.1-1 Failed [GCC_ERROR] trashapplet.c:339:36: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gnome-boxes 3.14.2-2 Failed [GCC_ERROR] app-window.vala:360:2: error: non-void function 'boxes_app_window_on_delete_event' should return a value [-Wreturn-type]
gnome-chess 1:3.14.0-1 Failed [GCC_ERROR] gnome-chess.c:4426:134: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
gnome-main-menu 1.8.0-4 Failed [GCC_ERROR] :1489:31: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gnome-media 3.4.0-2 Failed [GCC_ERROR] sound-theme-file-utils.c:193:33: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gnome-online-accounts 3.14.2-1 Failed [GCC_ERROR] goakerberosidentity.c:318:39: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gnome-panel 3.8.1-7 Failed [GCC_ERROR] panel-applet-frame.c:780:7: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gnome-photos 3.14.2-1 Failed [GCC_ERROR] photos-search-match.c:63:27: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gnome-pie 0.5.6-1 Failed [GCC_ERROR] triggerSelectWindow.c:539:189: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
gnome-screensaver 3.6.1-4 Failed [GCC_ERROR] gs-listener-dbus.c:362:39: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gnome-sudoku 1:3.14.1-1 Failed [GCC_ERROR] gnome-sudoku.vala:288:146: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
gnome-tetravex 1:3.14.0-1 Failed [GCC_ERROR] gnome-tetravex.c:1118:134: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
gnucap 1:0.36~20091207-2 Failed [GCC_ERROR] ./mg_.h:134:19: error: variable has incomplete type 'C_Comment'
gnuift 0.1.14-12.1 Failed [GCC_ERROR] perl-compile-test-program.cc:71:3: error: use of undeclared identifier 'my_perl'
gnupg 1.4.18-7 Failed [GCC_ERROR] ../../mpi/mpi-inv.c:169:9: error: void function 'mpi_invm' should not return a value [-Wreturn-type]
gnustep-back 0.24.0-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] GSFunction.m:171: undefined reference to `free'
gnustep-base 1.24.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] Unicode.m:2710: undefined reference to `getenv'
gnustep-dl2 0.12.0-13 Failed [CLANG_ERROR/CLANG_LD_ERROR] AdvancedEntityInspector.m:124: undefined reference to `__objc_exec_class'
gobby 0.4.13-2 Failed [GCC_ERROR] ./inc/config.hpp:463:7: error: explicit specialization of 'serialise::default_context_to<Glib::ustring>' after instantiation
gobject-introspection 1.42.0-2.2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
goffice-0.8 0.8.17-3 Failed [GCC_ERROR] go-format.c:5572:26: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
goffice 0.10.18-1 Failed [GCC_ERROR] app/error-info.c:63:33: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gofigure2 0.9.0-3 Failed [GCC_ERROR] Octree.inl:714:24: error: reference to non-static member function must be called
golang-go.tools 0.0~hg20140703-4 Failed [BUILDDEPS] Dependencies installation failed
golang 2:1.3.3-1 Failed [UNKNOWN] XXX
google-glog 0.3.3-2 Failed [TESTS_FAILURES] Tests failures
gorm.app 1.2.20-2 Failed [GCC_ERROR] GormClassInspector.m:541:51: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
gosmore 0.0.0.20100711-2.1 Failed [GCC_ERROR] libgosm.cpp:147:53: error: expected ')'
gpart 0.1h-11 Failed [GCC_ERROR] gpart.c:72:8: error: redefinition of 'log' as different kind of symbol
gpiv 0.6.1-2.3 Failed [GCC_ERROR] ../../../src/display_intregs.c:142:5: error: non-void function 'create_intreg_data' should return a value [-Wreturn-type]
gpm 1.20.4-6.1 Failed [GCC_ERROR/CLANG_ERROR] prog/display-buttons.c:39:10: fatal error: 'gpm.h' file not found
gprbuild 2014dfsg-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
gprolog 1.3.0-6.1 Failed [UNKNOWN] XXX
gpsshogi 0.6.0-3+nmu1 Failed [BUILDDEPS] Dependencies installation failed
gr-iqbal 0.37.2-1 Failed [GCC_ERROR] cxvec.h:45:15: error: expected ';' at end of declaration list
grail 3.1.0-2 Failed [GCC_ERROR] subscription.cpp:108:19: error: comparison of unsigned expression < 0 is always false [-Werror,-Wtautological-compare]
gramophone2 0.8.13a-3 Failed [GCC_ERROR] midifile.c:159:3: error: non-void function 'readheader' should return a value [-Wreturn-type]
grantlee 0.4.0-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
granule 1.4.0-7-2 Failed [GCC_ERROR] ./GrappConf.h:31:7: error: forward declaration of class cannot have a nested name specifier
gravit 0.5.1+dfsg-2 Failed [BUILDDEPS] Dependencies installation failed
grcm 0.1.6-1 Failed [GCC_ERROR] callbacks.c:134:4: error: non-void function 'on_ConnectionsWindow_delete_event' should return a value [-Wreturn-type]
gridlock.app 1.10-4 Failed [GCC_ERROR] NSObject+Extensions.m:214:32: error: called object type 'int' is not a function or function pointer
grilo-plugins 0.2.13-3 Failed [GCC_ERROR] grl-bliptv.c:412:28: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
grilo 0.2.11-2 Failed [GCC_ERROR] grl-log.c:298:31: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gringo 4.4.0-1 Failed [UNKNOWN] XXX
grml2usb 0.14.10.1 Failed [GCC_ERROR] mbr.S:38:16: error: unexpected token in argument list
grub2 2.02~beta2-22 Failed [UNKNOWN] XXX
grub 0.97-70 Failed [CONFIGURE_ERROR] configure: error: GRUB requires GAS .code16 addr32 support; upgrade your binutils
gstreamer0.10 0.10.36-1.5 Failed [GCC_ERROR] gmessages.h:204:11: error: use of undeclared identifier 'g_log_domain_gstreamer'
gthumb 3:3.3.1-2 Failed [GCC_ERROR] gth-browser.c:954:23: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gtimer 2.0.0-1.2 Failed [GCC_ERROR] custom-list.c:613:3: error: non-void function 'custom_list_append_record' should return a value [-Wreturn-type]
gtk+3.0 3.14.5-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
gtkguitune 0.8-6 Failed [GCC_ERROR] lcdview.cc:26:31: error: addition of default argument on redeclaration makes this constructor a default constructor
gtksourceview2 2.10.5-2 Failed [GCC_ERROR] test-widget.c:271:26: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gtkspellmm 3.0.3+dfsg-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
gtranslator 2.91.6-1 Failed [GCC_ERROR] gtr-viewer.c:154:27: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
guacamole-server 0.8.3-1 Failed [GCC_ERROR] daemon.c:415:2: error: embedding a directive within macro arguments has undefined behavior [-Werror,-Wembedded-directive]
guile-1.8 1.8.8+1-10 Failed [UNKNOWN] dh_auto_test: make -j10 check returned exit code 2
gummiboot 45-2 Failed [GCC_ERROR/CLANG_ERROR] efibind.h:29:10: error: Compiler is too old for GNU_EFI_USE_MS_ABI
guvcview 2.0.1+debian-1 Failed [GCC_ERROR] v4l2_core.c:671:3: error: non-void function 'v4l2core_start_stream' should return a value [-Wreturn-type]
guymager 0.7.3-3 Failed [GCC_ERROR] aewf.cpp:141:12: error: field has incomplete type 'uint []'
gxkb 0.7.3-1 Failed [GCC_ERROR] statusicon.c:60:9: error: non-void function 'gtk_status_icon_scrolled' should return a value [-Wreturn-type]
gxneur 0.17.0-1 Failed [GCC_ERROR] misc.c:101:20: error: variable 'all_modifiers' is not needed and will not be emitted [-Werror,-Wunneeded-internal-declaration]
hardening-wrapper 2.7 Failed [UNKNOWN] dh_auto_test: make -j1 check returned exit code 2
hardinfo 0.5.1-1.4 Failed [CLANG_ERROR/CLANG_LD_ERROR] shell.c:1005: undefined reference to `strend'
haskell-cabal 1.20.0.2-1 Failed [BUILDDEPS] Dependencies installation failed
haskell-categories 1.0.6-1 Failed [UNKNOWN] XXX
haskell-citeproc-hs 0.3.9-1 Failed [UNKNOWN] /tmp/ghc14073_0/ghc14073_17.hscpp: openBinaryFile: does not exist (No such file or directory)
haskell-conduit 1.1.6-1 Failed [UNKNOWN] XXX
haskell-either 4.3-1 Failed [UNKNOWN] /tmp/ghc19606_0/ghc19606_1.hscpp: openBinaryFile: does not exist (No such file or directory)
haskell-esqueleto 1.4.1.2-1 Failed [UNKNOWN] XXX
haskell-fclabels 1.1.4.3-2 Failed [UNKNOWN] XXX
haskell-gluraw 1.3.0.0-2 Failed [UNKNOWN] XXX
haskell-hsx 0.10.4-3 Failed [UNKNOWN] /tmp/ghc24955_0/ghc24955_1.hscpp: openBinaryFile: does not exist (No such file or directory)
haskell-lens 4.1.2.1-3 Failed [UNKNOWN] /tmp/ghc22526_0/ghc22526_9.hscpp: openBinaryFile: does not exist (No such file or directory)
haskell-lifted-base 0.2.0.3-2 Failed [UNKNOWN] /tmp/ghc24480_0/ghc24480_0.hscpp: openBinaryFile: does not exist (No such file or directory)
haskell-ltk 0.12.1.0-3 Failed [UNKNOWN] XXX
haskell-memoize 0.6-2 Failed [UNKNOWN] /tmp/ghc4950_0/ghc4950_0.hscpp: openBinaryFile: does not exist (No such file or directory)
haskell-monad-control 0.3.2.2-1 Failed [UNKNOWN] /tmp/ghc10012_0/ghc10012_0.hscpp: openBinaryFile: does not exist (No such file or directory)
haskell-network 2.4.1.2-2 Failed [UNKNOWN] XXX
haskell-notmuch-web 0.2.0-7 Failed [UNKNOWN] XXX
haskell-openglraw 1.3.0.0-2 Failed [UNKNOWN] XXX
haskell-pandoc-citeproc 0.4.0.1-1 Failed [UNKNOWN] /tmp/ghc16766_0/ghc16766_3.hscpp: openBinaryFile: does not exist (No such file or directory)
haskell-parallel 3.2.0.4-1 Failed [UNKNOWN] XXX
haskell-shake 0.13.2+dfsg-3 Failed [BUILDDEPS] Dependencies installation failed
haskell-text 0.11.3.1-1 Failed [UNKNOWN] XXX
haskell-threads 0.5.0.2-1 Failed [UNKNOWN] /tmp/ghc11124_0/ghc11124_0.hscpp: openBinaryFile: does not exist (No such file or directory)
haskell-uniplate 1.6.11-2 Failed [UNKNOWN] XXX
haskell-vector-space 0.8.6-3 Failed [UNKNOWN] XXX
haskell-vector 0.10.0.1-3 Failed [UNKNOWN] XXX
haskell-yesod-form 1.3.15-1 Failed [UNKNOWN] XXX
haxml 1:1.23.3-2 Failed [UNKNOWN] XXX
helpviewer.app 0.3-8 Failed [CLANG_ERROR] clang: error: invalid value 'ISO-8859-1' in '-finput-charset=ISO-8859-1'
herwig++ 2.6.0-1 Failed [GCC_ERROR] ../../../include/Herwig++/MatrixElement/Matchbox/Utility/SpinorHelicity.h:95:12: error: use of overloaded operator '*=' is ambiguous (with operand types 'std::complex<ThePEG::Qty<0, 1, 0, 1, 2, 1> >' and 'Complex' (aka 'complex<double>'))
hfsplus 1.0.4-12.1 Failed [GCC_ERROR] blockiter.c:148:8: error: redefinition of a 'extern inline' function 'blockiter_curr' is not supported in C99 mode
hhsuite 2.0.16-5 Failed [GCC_ERROR] cs/alignment.h:93:56: error: reference to non-static member function must be called
hidrd 0.2.0-11 Failed [GCC_ERROR] page.h:225:14: error: comparison of constant 65280 with expression of type 'hidrd_usage_page' (aka 'enum hidrd_usage_page') is always false [-Werror,-Wtautological-constant-out-of-range-compare]
hime 0.9.10-5 Failed [GCC_ERROR/CLANG_ERROR] tray-appindicator.c:22:10: fatal error: 'libappindicator/app-indicator.h' file not found
hnb 1.9.18-10 Failed [GCC_ERROR] prefs.c:92:2: error: embedding a #include directive within macro arguments is not supported
holotz-castle 1.3.14-6 Failed [GCC_ERROR] ../JLib/JLib/Util/JString.h:408:13: error: comparison of unsigned expression >= 0 is always true [-Werror,-Wtautological-compare]
hpsockd 0.17 Failed [BUILDDEPS] Dependencies installation failed
htmlcxx 0.85-3 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
hugs98 98.200609.21-5.3 Failed [UNKNOWN] tools/make_bootlib: 68: tools/make_bootlib: -D__HUGS__: not found
hunt 1.5-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] hunt.h:297: multiple definition of `generate_key'
hupnp 1.0.0-1 Failed [GCC_ERROR] src/devicehosting/devicehost/hpresence_announcer_p.h:277:28: error: cannot initialize a variable of type 'Herqq::Upnp::HSsdp *' with an lvalue of type 'Herqq::Upnp::HDeviceHostSsdpHandler *const'
hylafax 3:6.0.6-6 Failed [UNKNOWN] XXX
i3blocks 1.3-1 Failed [GCC_ERROR] ini.c:182:26: error: function definition is not allowed here
ibus-array 0.1.0-1 Failed [GCC_ERROR] engine.c:324:9: error: non-void function 'ibus_array_engine_update_symbol_lookup_table' should return a value [-Wreturn-type]
icedove 31.5.0-1 Failed [GCC_ERROR/CLANG_ERROR] psutil/_psutil_linux.c:10:10: fatal error: 'Python.h' file not found
iceweasel 31.5.3esr-1 Failed [GCC_ERROR] TypedObject.cpp:713:16: error: implicit conversion of nullptr constant to 'bool' [-Werror,-Wnull-conversion]
icheck 0.9.7-6.1 Failed [GCC_ERROR] PerlXS.xs:1721:17: error: expected identifier or '('
icinga 1.11.6-1 Failed [GCC_ERROR] ./../include/snprintf.h:29:5: error: expected parameter declarator
icu 52.1-8 Failed [GCC_ERROR] type_traits:279:39: error: use of undeclared identifier '__float128'
idjc 0.8.14-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: "math library is missing critical function"
ifhp 3.5.20-13 Failed [GCC_ERROR] ifhp.c:1061:43: error: unused parameter 'infovar' [-Werror,-Wunused-parameter]
ifrit 3.4.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] iscriptkit.h:735: undefined reference to `iArray<iString>::~iArray()'
igraph 0.7.1-2 Failed [UNKNOWN] dh_auto_test: make -j10 check returned exit code 2
imagevis3d 3.1.0-4 Failed [GCC_ERROR] IO/IOManager.cpp:2599:19: error: no matching function for call to 'bind'
imvirt 0.9.6-1 Failed [GCC_ERROR] vmware.c:65:5: error: invalid operand for instruction
indicator-session 0.3.96-1 Failed [GCC_ERROR] session-dbus.c:51:8: error: use of GNU old-style field designator extension [-Werror,-Wgnu-designator]
insighttoolkit4 4.6.0-3 Failed [GCC_ERROR] stddef.h:57:39: error: missing binary operator before token "("
insserv 1.14.0-5 Failed [GCC_ERROR] insserv.c:1001:5: error: use of undeclared identifier 'extension'
intel-vaapi-driver 1.4.1-2 Failed [UNKNOWN] XXX
invaders 1.0.0-12 Failed [CLANG_ERROR/CLANG_LD_ERROR] video.c:(.text+0x0): multiple definition of `insb'
inventor 2.1.5-10-18 Failed [GCC_ERROR] ppp.c++:630:1: error: C++ requires a type specifier for all declarations
ioapps 1.4r2-3 Failed [GCC_ERROR] ./in_common.h:26:10: error: 'adt/list.h' file not found with <angled> include; use "quotes" instead
ion 3.2.1+dfsg-1 Failed [GCC_ERROR] dtnperf/dtnperf/src/dtnperf_modes/dtnperf_client.c:1959:53: error: comparison of array 'perf_opt->mon_eid' equal to a null pointer is always false [-Werror,-Wtautological-pointer-compare]
ipgrab 0.9.10-1 Failed [GCC_ERROR] icmpv6.c:208:10: error: void function 'dump_icmpv6' should not return a value [-Wreturn-type]
ippl 1.4.14-12.1 Failed [GCC_ERROR] main.c:56:16: error: redefinition of 'log' as different kind of symbol
ipsec-tools 1:0.8.2+20140711-2 Failed [GCC_ERROR] eaytest.c:316:6: error: comparison of array 'dnstr_w1' not equal to a null pointer is always true [-Werror,-Wtautological-pointer-compare]
ircp-tray 0.7.6-1.1 Failed [GCC_ERROR] sendfile.c:118:3: error: non-void function 'send_session_new' should return a value [-Wreturn-type]
irda-utils 0.9.18-12 Failed [CLANG_ERROR/CLANG_LD_ERROR] irlap.c:(.text+0x7f8): undefined reference to `parse_i_frame'
isdnutils 1:3.25+dfsg1-3.5 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
ivtools 1.2.11a1-5 Failed [GCC_ERROR] src/Unidraw/catalog.cc:663:45: error: expected ')'
jabberd2 2.2.17-1 Failed [GCC_ERROR] out.c:630:9: error: non-void function 'out_packet' should return a value [-Wreturn-type]
jackeq 0.5.9-2 Failed [GCC_ERROR] main.c:251:6: error: conflicting types for 'getSettings'
jade 1.2.1-47.3 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
jbofihe 0.38-5.1 Failed [GCC_ERROR] compdfa.c:321:19: error: non-void function 'compress_dfa' should return a value [-Wreturn-type]
jffi 1.0.2-11 Failed [GCC_ERROR] [exec] /«PKGBUILDDIR»/jni/jffi/FastLongInvoke.c:27:47: error: unused parameter 'env' [-Werror,-Wunused-parameter]
jthread 1.3.1-3 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
judy 1.0.5-4 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/«PKGBUILDDIR»'
julia 0.3.2-2 Failed [GCC_ERROR] init.c:990:12: error: expected parameter declarator
kadu 1.3-1 Failed [GCC_ERROR] wchar2.h:291:14: error: use of undeclared identifier '__builtin_va_arg_pack'
kamailio 4.2.0-2 Failed [GCC_ERROR] xmlrpc.c:155:5: error: expected parameter declarator
kannel-sqlbox 0.7.2-3 Failed [GCC_ERROR] sqlbox_sqlite3.c:114:9: error: non-void function 'sqlite3_fetch_msg' should return a value [-Wreturn-type]
kannel 1.4.3-2 Failed [GCC_ERROR] test/test_octstr_format.c:66:28: error: integer literal is too large to be represented in any integer type
kbdd 0.6-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] libkbdd.c:162: undefined reference to `_init_windows'
kbibtex 0.4-4 Failed [GCC_ERROR] websearchabstract.cpp:69:63: error: addition of default argument on redeclaration makes this constructor a default constructor
kbuild 1:0.1.9998svn2695+dfsg-2 Failed [GCC_ERROR] kmkbuiltin.h:53:12: error: too many parameters (4) for 'main': must be 0, 2, or 3
kdc2tiff 0.35-10 Failed [GCC_ERROR] kdc2tiff.cpp:308:1: error: C++ requires a type specifier for all declarations
kde-baseapps 4:4.14.2-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
kde-style-qtcurve 1.8.14-3 Failed [BUILDDEPS] Dependencies installation failed
kde-workspace 4:4.11.13-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
kde4libs 4:4.14.2-5 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
kdegraphics-mobipocket 4:4.14.2-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
kdepimlibs 4:4.14.2-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
kdevelop-pg-qt 1.0.0-3 Failed [GCC_ERROR] c++0x_warning.h:32:2: error: This file requires compiler and library support for the ISO C++ 2011 standard. This support is currently experimental, and must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
kdevelop 4:4.7.0-1 Failed [GCC_ERROR] adaptsignatureassistant.cpp:97:18: error: no viable overloaded '='
kdrill 6.5deb2-10 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
kexec-tools 1:2.0.7-5 Failed [GCC_ERROR] purgatory/arch/i386/entry32-16.S:23:2: error: unknown directive
kinput2 3.1-12 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
kismet 2013.03.R1b-3 Failed [GCC_ERROR/CLANG_ERROR] nl80211_control.cc:30:10: fatal error: 'netlink/genl/genl.h' file not found
kiten 4:4.14.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
klibc 2.0.4-2 Failed [GCC_ERROR/CLANG_ERROR] stdarg.h:9:15: fatal error: 'stdarg.h' file not found
kmplayer 1:0.11.3d-2 Failed [GCC_ERROR] kmplayershared.h:217:81: error: member reference base type 'SharedData<T> *' is not a structure or union
knews 1.0b.1-30 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
konwert 1.8-11.2 Failed [GCC_ERROR] bin/trs.cc:594:1: error: C++ requires a type specifier for all declarations
kopete 4:4.14.1-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
koules 1.4-22 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
kprinter4 12-1 Failed [GCC_ERROR] postscriptdocument.h:100:120: error: control may reach end of non-void function [-Werror,-Wreturn-type]
kraptor 0.0.20040403-8 Failed [GCC_ERROR] src/game.c:416:3: error: function definition is not allowed here
kst 2.0.3-3 Failed [CLANG_ERROR] clang: error: no such file or directory: '/FI/«PKGBUILDDIR»/obj-x86_64-linux-gnu/src/libkst/kstcore_pch.h'
kterm 6.2.0-46.1 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
ktp-common-internals 0.8.1-4 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
kumofs 0.4.13-6.1 Failed [GCC_ERROR/CLANG_ERROR] ./wavy_edge.h:35:10: fatal error: 'mpsrc/ wavy_edge_epoll.h' file not found
kyotocabinet 1.2.76-4 Failed [GCC_ERROR] kcthread.cc:671:50: error: cannot initialize a parameter of type 'void *' with an rvalue of type 'int'
labrea 2.5-stable-3 Failed [CLANG_ERROR] clang: error: '-I-' not supported, please use -iquote instead
langford 0.0.20130228-3 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
larswm 7.5.3-6 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
laserboy 2012.11.11-1 Failed [GCC_ERROR] LaserBoy_frame_set.hpp:259:38: error: parameter of overloaded 'operator++' cannot have a default argument
lastpass-cli 0.3.0-2 Failed [CLANG_ERROR] clang: error: unknown argument: '-fno-aggressive-loop-optimizations'
latencytop 0.5 Failed [GCC_ERROR] fsync.c:66:4: error: non-void function 'chain_file' should return a value [-Wreturn-type]
lcalc 1.23+dfsg-4 Failed [GCC_ERROR] ../include/Lcomplex.h:138:14: error: C++ requires a type specifier for all declarations
lcgdm 1.8.9-1 Failed [UNKNOWN] XXX
ldapvi 1.7-9 Failed [GCC_ERROR] ldapvi.c:1468:30: error: non-void function 'copy_sasl_output' should return a value [-Wreturn-type]
le 1.14.9-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] user.cc:1630: undefined reference to `operator new(unsigned long)'
lensfun 0.2.8-2 Failed [GCC_ERROR] lensfun.h:68:13: error: "I don't know how to change symbol visibility for your compiler"
lgeneral 1.2.6-1 Failed [GCC_ERROR] hashtable_itr.c:29:1: error: redefinition of a 'extern inline' function 'hashtable_iterator_key' is not supported in C99 mode
libace-perl 1.92-3 Failed [GCC_ERROR] RPC.xs:157:6: error: non-void function 'constant' should return a value [-Wreturn-type]
libalog 0.5.0-1 Failed [TESTS_FAILURES] Tests failures
libapache2-mod-perl2 2.0.9~1624218-2 Failed [TESTS_FAILURES] Tests failures
libappindicator 0.4.92-3.1 Failed [GCC_ERROR] app-indicator.c:199:2: error: use of GNU old-style field designator extension [-Werror,-Wgnu-designator]
libaqbanking 5.4.3beta-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libasync-interrupt-perl 1.20-1 Failed [GCC_ERROR] ./ecb.h:519:42: error: '_Noreturn' keyword must precede function declarator
libaunit 3.7.1-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
libaws 3.2.0-3 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
libb-hooks-parser-perl 0.12-1 Failed [TESTS_FAILURES] Tests failures
libbitcoin 2.0-2.2 Failed [GCC_ERROR] blockchain/organizer.cpp:223:59: error: non-constant-expression cannot be narrowed from type 'int' to 'size_t' (aka 'unsigned long') in initializer list [-Wc++11-narrowing]
libbonobo 2.32.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
libbonoboui 2.24.5-2 Failed [GCC_ERROR] bonobo-ui-node.c:844:40: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
libbpp-phyl 2.1.0-1 Failed [GCC_ERROR] NumTools.h:116:50: error: call to function 'operator*' that is neither visible in the template definition nor found by argument-dependent lookup
libccrtp 2.0.9-2 Failed [GCC_ERROR] config.h:89:23: error: redefinition of 'stricmp'
libccscript3 1.1.7-2 Failed [GCC_ERROR] string.h:734:35: error: friend declaration specifying a default argument must be a definition
libcec 2.1.4-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libcerf 1.3-2 Failed [GCC_ERROR] w_of_z.c:79:21: error: unused function 'cpolar' [-Werror,-Wunused-function]
libclaw 1.7.3-1 Failed [GCC_ERROR] rectangle.tpp:143:16: error: use 'template' keyword to treat 'cast_value_type_to' as a dependent template name
libcommoncpp2 1.8.1-6 Failed [GCC_ERROR] ../inc/cc++/string.h:734:35: error: friend declaration specifying a default argument must be a definition
libcoro-perl 6.410-1 Failed [GCC_ERROR] ./ecb.h:537:42: error: '_Noreturn' keyword must precede function declarator
libcrypto++ 5.6.1-6 Failed [GCC_ERROR] gcm.cpp:607:3: error: invalid operand for instruction
libctapimkt 1.0.5~rc1-2 Failed [GCC_ERROR] mktlin.c:340:1: error: non-void function 'antwort' should return a value [-Wreturn-type]
libdap 3.12.0-1 Failed [GCC_ERROR] ./ResponseBuilder.h:31:7: error: forward declaration of class cannot have a nested name specifier
libdbi-drivers 0.9.0-3 Failed [UNKNOWN] XXX
libdbusmenu-qt 0.9.2-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libdbusmenu 12.10.2-1 Failed [GCC_ERROR] menuitem.c:977:23: error: use of GNU old-style field designator extension [-Werror,-Wgnu-designator]
libdc1394-22 2.2.3-1 Failed [GCC_ERROR] control.c:286:19: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
libdvbpsi 1.2.0-1 Failed [GCC_ERROR] test_dr.c:49:3: error: comparison of constant 12 with expression of type 'bool' is always true [-Werror,-Wtautological-constant-out-of-range-compare]
libecap 0.2.0-3 Failed [GCC_ERROR] ../../../src/libecap/common/area.h:60:77: error: 'does_not_support_comparisons' is a private member of 'libecap::Area'
libechonest 2.1.0-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libemu 0.2.0+git20120122-1.2 Failed [GCC_ERROR] environment/win32/env_w32_dll_export_ws2_32_hooks.c:372:11: error: comparison of unsigned expression < 0 is always false [-Werror,-Wtautological-compare]
liberasurecode 1.0.5-2 Failed [GCC_ERROR] libec_slap.c:83:13: error: comparison of unsigned expression < 0 is always false [-Werror,-Wtautological-compare]
libesmtp 1.0.6-4 Failed [GCC_ERROR] ./missing.h:48:5: error: expected parameter declarator
libev-perl 4.18-1 Failed [GCC_ERROR] ./libev/ev.c:1020:42: error: '_Noreturn' keyword must precede function declarator
libev 1:4.15-3 Failed [GCC_ERROR] ev.c:970:42: error: '_Noreturn' keyword must precede function declarator
libffado 2.2.1-2 Failed [GCC_ERROR] dispatcher.h:259:5: error: no matching function for call to '_init_threading'
libffi 3.1-2 Failed [CLANG_ERROR] clang: error: unsupported argument '--gdwarf2' to option 'Wa,'
libflorist 2014-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
libgadu 1:1.12.0-5 Failed [GCC_ERROR] handlers.c:1423:6: error: absolute value function 'abs' given an argument of type 'long' but has parameter of type 'int' which may cause truncation of value [-Werror,-Wabsolute-value]
libgdal-grass 1.10.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
libgdf 0.1.2-2 Failed [GCC_ERROR] GDFHeaderAccess.cpp:28:14: error: unused variable 'epsilon_d' [-Werror,-Wunused-const-variable]
libgmpada 0.0.20131223-3 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
libgnatcoll 1.6gpl2014-6 Failed [UNKNOWN] XXX
libgnomeui 2.24.5-3 Failed [GCC_ERROR] gnome-gconf-ui.c:187:50: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
libgphoto2 2.5.4-1.1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libgpiv 0.6.1-4.1 Failed [GCC_ERROR] ../../../lib/io_raw.c:261:5: error: non-void function 'gpiv_fwrite_raw_image' should return a value [-Wreturn-type]
libgraphics-libplot-perl 2.2.2-6 Failed [GCC_ERROR] Libplot.xs:91:6: error: non-void function 'constant' should return a value [-Wreturn-type]
libgrip 0.3.8-1 Failed [GCC_ERROR] gripgesturemanager.c:1062:21: error: implicit conversion from enumeration type 'GripGestureType' to different enumeration type 'GdkEventType' [-Werror,-Wenum-conversion]
libgtkada 2.24.4dfsg-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatec=/«PKGBUILDDIR»/debian/gtkada_obj_dynamic/GNAT-TEMP-000001.TMP'
libguestfs 1:1.28.6-1 Failed [UNKNOWN] XXX
libgxps 0.2.2-3 Failed [GCC_ERROR] gxps-images.c:352:34: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
libhdate 1.6-2.2 Failed [GCC_ERROR] ././local_functions.c:672:2: error: function definition is not allowed here
libiberty 20141014-1 Failed [GCC_ERROR] ../libiberty/../include/libiberty.h:624:12: error: expected parameter declarator
libindi 0.9.8.1-5.1 Failed [GCC_ERROR] mathcalls.h:309:14: error: exception specification in declaration does not match previous declaration
libindicate 0.6.92-2 Failed [GCC_ERROR] server.c:214:2: error: use of GNU old-style field designator extension [-Werror,-Wgnu-designator]
libindicator 0.5.0-2 Failed [GCC_ERROR] indicator-service.c:103:2: error: use of GNU old-style field designator extension [-Werror,-Wgnu-designator]
libio-aio-perl 4.31-1 Failed [GCC_ERROR] ./libeio/ecb.h:530:42: error: '_Noreturn' keyword must precede function declarator
libiodbc2 3.52.9-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
libkcddb 4:4.14.2-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libkdeedu 4:4.14.1-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libkdegames 4:4.14.2-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libkgapi 2.2.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libkipi 4:4.13.3-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libkolab 0.5.3-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libkolabxml 1.0.2-2 Failed [BUILDDEPS] Dependencies installation failed
libkpeople 0.2.2-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libkqueue 2.0.3-1.1 Failed [GCC_ERROR] src/linux/read.c:207:74: error: comparison of constant 0 with boolean expression is always false [-Werror,-Wtautological-constant-out-of-range-compare]
libktorrent 1.3.1-3 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
liblastfm 1.0.8-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libldm 0.2.3-3 Failed [GCC_ERROR] ldmtool.c:90:25: error: duplicate 'const' declaration specifier [-Werror,-Wduplicate-decl-specifier]
liblinear 1.8+dfsg-4 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
liblip 2.0.0-1.2 Failed [GCC_ERROR] tnt_sparse_matrix_csr.h:97:3: error: no matching constructor for initialization of 'Array1D<int>'
liblog4ada 1.2-5 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
liblouisxml 2.4.0-5 Failed [GCC_ERROR] transcriber.c:87:1: error: conflicting types for 'widecharcpy'
libmbim 1.10.0-2.1 Failed [CLANG_ERROR] error: unknown warning option '-Wunused-but-set-variable'; did you mean '-Wunused-const-variable'? [-Werror,-Wunknown-warning-option]
libmemcached 1.0.18-4 Failed [GCC_ERROR] clients/memflush.cc:42:19: error: comparison between pointer and integer ('char *' and 'int')
libmm-qt 1.0.1-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libmnl 1.0.3-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] genl-family-get.c:194: undefined reference to `mnl_nlmsg_put_header'
libmoe 1.5.8-1 Failed [GCC_ERROR] iso2mb.c:517:1: error: redefinition of a 'extern inline' function 'mb_encode_to_wchar' is not supported in C99 mode
libncursesada 5.9.20140726-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: No usable Ada compiler found
libnet-jabber-loudmouth-perl 0.07-3 Failed [GCC_ERROR] inline.h:311:9: error: nonnull parameter 'pv' will evaluate to 'true' on first encounter [-Werror,-Wpointer-bool-conversion]
libnetfilter-acct 1.0.2-1.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] nfacct-get.c:52: undefined reference to `nfacct_nlmsg_build_hdr'
libnetfilter-conntrack 1.0.4-1 Failed [GCC_ERROR] api.c:959:8: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
libnetfilter-cthelper 1.0.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] nfct-helper-get.c:47: undefined reference to `nfct_helper_nlmsg_build_hdr'
libnetfilter-cttimeout 1.0.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] nfct-timeout-add.c:35: undefined reference to `nfct_timeout_alloc'
libnfo 1.0.1-1.1 Failed [GCC_ERROR/CLANG_ERROR] nfo_xml_utils.c:22:10: fatal error: 'libxml/parser.h' file not found
libnftnl 1.0.3-4 Failed [GCC_ERROR] rule.c:806:20: error: no member named '__builtin___snprintf_chk' in 'struct expr_ops'
libnm-qt 0.9.8.2-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libnsgif 0.0.1-1.1 Failed [GCC_ERROR] src/libnsgif.c:912:120: error: while loop has empty body [-Werror,-Wempty-body]
liboil 0.3.17-2 Failed [GCC_ERROR] wavelet.c:1759:27: error: invalid use of a cast in a inline asm context requiring an l-value: remove the cast or build with -fheinous-gnu-extensions
libomxalsa 0.1-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: POSIX threads support is required
libomxcamera 0.1-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/«PKGBUILDDIR»'
libomxfbdevsink 0.1-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/«PKGBUILDDIR»'
libomxil-bellagio 0.9.3-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: libdl is required
libomxmad 0.1-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: POSIX threads support is required
libomxvideosrc 0.1-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/«PKGBUILDDIR»'
libomxvorbis 0.1-3 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/«PKGBUILDDIR»'
libomxxvideo 0.1-3 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: POSIX threads support is required
libopendbx 1.4.6-8 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libopenraw 0.0.9-3.5 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
liboping 1.8.0-1 Failed [GCC_ERROR] liboping.c:103:10: error: 'dprintf' macro redefined [-Werror,-Wmacro-redefined]
libosl 0.6.0-3.1 Failed [CLANG_ERROR] clang: error: optimization flag '-funswitch-loops' is not supported
libpam-chroot 0.9-4.1 Failed [GCC_ERROR] pam_chroot.c:190:21: error: comparison of 0 > unsigned expression is always false [-Werror,-Wtautological-compare]
libpam-unix2 1:2.6-2 Failed [CLANG_ERROR] clang: error: no such file or directory: 'pam_unix2.so'
libpgf 6.14.12-3 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libphone-ui-shr 0.1+git20130901-3 Failed [GCC_ERROR] ./phoneui-phone-log.h:22:9: error: '_PHONEUI_PHONELOG_H' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard]
libphone-utils 0.1+git20110523-2.1 Failed [CLANG_ERROR] clang: error: -lm: 'linker' input unused
libpwiz 3.0.6585-2 Failed [GCC_ERROR] libraries/boost_aux/boost/utility/singleton.hpp:83:11: error: visibility does not match previous declaration
libqb 0.17.0-2 Failed [GCC_ERROR] check_ipc.c:185:9: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
libqmi 1.10.2-2 Failed [CLANG_ERROR] error: unknown warning option '-Wunused-but-set-variable'; did you mean '-Wunused-const-variable'? [-Werror,-Wunknown-warning-option]
libqt4pas 2.5-12 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libradsec 0.0.5-2 Failed [GCC_ERROR] ./radius/client.h:657:24: error: duplicate 'const' declaration specifier [-Werror,-Wduplicate-decl-specifier]
librcsb-core-wrapper 1.005-3 Failed [GCC_ERROR/CLANG_ERROR] src/TableFile.C:357:11: error: reference cannot be bound to dereferenced null pointer in well-defined C++ code; comparison may be assumed to always evaluate to true [-Werror,-Wtautological-undefined-compare]
librg-blast-parser-perl 0.03-2 Failed [GCC_ERROR] blast-parser-driver.h:61:12: error: 'token_type' (aka 'rostlab::blast::parser::token::yytokentype') is not a class, namespace, or scoped enumeration
librostlab-blast 1.0.1-3 Failed [GCC_ERROR] ./rostlab/blast-parser-driver.h:61:12: error: 'token_type' (aka 'rostlab::blast::parser::token::yytokentype') is not a class, namespace, or scoped enumeration
librsl 1.43-1 Failed [GCC_ERROR] kwaj_subtract_one_day.c:40:3: error: non-void function 'subtract_one_day' should return a value [-Wreturn-type]
librsync 0.9.7-10 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./.libs/librsync.so: undefined reference to `rs_appendflush'
libs3 2.0-2 Failed [GCC_ERROR] inc/request.h:131:14: error: sizeof on pointer operation will return size of 'char *' instead of 'char [9]' [-Werror,-Wsizeof-array-decay]
libsdl2-mixer 2.0.0+dfsg1-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
libsemanage 2.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ustr-b.h:55: multiple definition of `ustr_add_b_uint16'
libsfml 2.1+dfsg2-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libshevek 1.4-1 Failed [GCC_ERROR] src/iostring.hh:728:3: error: expression result unused; should this cast be to 'void'? [-Werror,-Wunused-value]
libsigc++-2.0 2.4.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libsixel 1.4.2-1 Failed [BUILD_TIMEOUT/TESTS_FAILURES] Build killed with signal TERM after 150 minutes of inactivity
libspf2 1.2.10-5 Failed [GCC_ERROR] spf_compile.c:580:5: error: expected expression
libssh 0.6.3-4 Failed [GCC_ERROR] sample.c:87:2: error: embedding a directive within macro arguments has undefined behavior [-Werror,-Wembedded-directive]
libswe 1.80.00.0002-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
libtemplates-parser 11.8.2014-3 Failed [BUILDDEPS] DEPS
libtexttools 2.1.0-6 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
libtomcrypt 1.17-6 Failed [GCC_ERROR] ./src/headers/tomcrypt_macros.h:269:24: error: constraint 'I' expects an integer constant expression
libv8-3.14 3.14.5.8-8.1 Failed [GCC_ERROR] ../src/../include/v8.h:2990:5: error: anonymous types declared in an anonymous union are an extension [-Werror,-Wnested-anon-types]
libvigraimpex 1.9.0+dfsg-10 Failed [GCC_ERROR] accumulator.hxx:1445:54: fatal error: recursive template instantiation exceeded maximum depth of 256
libvirt 1.2.9-9 Failed [TESTS_FAILURES] Tests failures
libvisual-plugins 0.4.0.dfsg.1-7 Failed [GCC_ERROR] morph_flash.c:119:3: error: non-void function 'lv_morph_flash_palette' should return a value [-Wreturn-type]
libvpx 1.3.0-3 Failed [GCC_ERROR] vp8_asm_enc_offsets.c:23:1: error: unexpected token in argument list
libwebsockets 1.2.2-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '-rdynamic'
libwfut 0.2.3-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libwx-perl 1:0.9923-4 Failed [UNKNOWN] XXX
libwx-scintilla-perl 0.39-1 Failed [UNKNOWN] XXX
libxbase 2.0.0-8.5 Failed [GCC_ERROR] exptest.cpp:136:1: error: C++ requires a type specifier for all declarations
libxc 2.1.1-1 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 156 minutes of inactivity
libxkbfile 1:1.0.8-1 Failed [GCC_ERROR] ../../src/cout.c:48:46: error: address of array 'xkb->names->vmods' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion]
libxmlada 4.4.2014-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
libxmlezout 1.06.1-7 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatec=/«PKGBUILDDIR»/debian/build_obj_static/GNAT-TEMP-000001.TMP'
libxs 1.2.0-1.1 Failed [GCC_ERROR] decoder.cpp:74:24: error: comparison of unsigned expression >= 0 is always true [-Werror,-Wtautological-compare]
libytnef 1.5-6 Failed [GCC_ERROR] ytnef.c:568:9: error: non-void function 'TNEFHexBreakdown' should return a value [-Wreturn-type]
libzen 0.4.29-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
libzrtpcpp 2.3.4-1 Failed [GCC_ERROR] config.h:89:23: error: redefinition of 'stricmp'
libzypp 14.29.1-2 Failed [GCC_ERROR] SolvIterMixin.h:167:60: error: invalid use of incomplete type 'zypp::asPoolItem'
lierolibre 0.5-1 Failed [GCC_ERROR] src/gvl/io/encoding.hpp:586:19: error: cast from pointer to smaller type 'uint32_t' (aka 'unsigned int') loses information
lightdm 1.10.3-3 Failed [GCC_ERROR] status.cstatus.cstatus.c:194:30: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
lightspark 0.7.2-6 Failed [UNKNOWN] XXX
lilo 1:24.1-1 Failed [GCC_ERROR] edit.c:195:31: error: initializer element is not a compile-time constant
linbox 1.3.2-1.1 Failed [GCC_ERROR] givpoly1kara.inl:36:35: error: read-only variable is not assignable
lincity 1.13.1-11 Failed [CLANG_ERROR/CLANG_LD_ERROR] lcx11.c:471: undefined reference to `pixmap_index'
link-monitor-applet 3.0-11 Failed [GCC_ERROR] jbsrc/lib/jb-util.c:228:28: error: 'format' attribute argument not supported: gnu_printf [-Werror,-Wignored-attributes]
linpsk 1.1-1.1 Failed [GCC_ERROR] ../../src/csound.cpp:23:22: error: addition of default argument on redeclaration makes this constructor a default constructor
linsmith 0.99.28-1 Failed [GCC_ERROR] element.c:315:16: error: non-void function 'clear_element_lnlist' should return a value [-Wreturn-type]
linux-tools 3.16-3 Failed [GCC_ERROR] devicetable-offsets.c:10:2: error: unexpected token at start of statement
linux86 0.16.17-3.1 Failed [GCC_ERROR] tok_io.c:231:6: error: non-void function 'do_control' should return a value [-Wreturn-type]
lirc 0.9.0~pre1-1.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] transmit.c:389: undefined reference to `send_code'
lives 2.2.8~ds0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] saveplay.c:1681: undefined reference to `count_virtual_frames'
lldpad 0.9.46-3 Failed [GCC_ERROR] lldp_dcbx_nl.c:808:17: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
lmms 1.0.3-5 Failed [GCC_ERROR] AutomatableModel.cpp:224:5: error: logical not is only applied to the left hand side of this comparison [-Werror,-Wlogical-not-parentheses]
log4cplus 1.0.4-1.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] loggingserver.cxx:52: undefined reference to `log4cplus::helpers::Socket::~Socket()'
lookup 1.08b-11 Failed [GCC_ERROR] lib/romaji2kana.c:59:12: error: source file is not valid UTF-8
lordsawar 0.2.0-2.1 Failed [GCC_ERROR] armyproto.cpp:39:34: error: array initializer must be an initializer list
lowpan-tools 0.3-1 Failed [BUILDDEPS] Dependencies installation failed
lsh-utils 2.1-5 Failed [GCC_ERROR] argp-fmtstream.c:395:1: error: redefinition of a 'extern inline' function 'argp_fmtstream_write' is not supported in C99 mode
ltrace 0.7.3-4 Failed [GCC_ERROR] ltrace-elf.c:238:1: error: comparison of constant 0 with boolean expression is always false [-Werror,-Wtautological-constant-out-of-range-compare]
ltris 1.0.19-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] bowl.c:(.text+0x297b): undefined reference to `delay_reset'
lusernet.app 0.4.2-7 Failed [GCC_ERROR] NNTPServer.m:488:33: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
lwipv6 1.5a-2 Failed [GCC_ERROR] ../../../../ports/unix/netif/vdeif.c:485:3: error: non-void function 'vdeif_streampkt_input' should return a value [-Wreturn-type]
lwm 1.2.2-5 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
lxterminal 0.2.0-1 Failed [GCC_ERROR] setting.c:165:5: error: non-void function 'copy_setting' should return a value [-Wreturn-type]
m4 1.4.17-4 Failed [UNKNOWN] dh_auto_test: make -j1 check returned exit code 2
macopix 1.7.4-5 Failed [GCC_ERROR] callbacks.c:541:40: error: non-void function 'MoveToFocus' should return a value [-Wreturn-type]
mailavenger 0.8.4-4 Failed [GCC_ERROR] pcre.c:1338:6: error: explicitly assigning value of variable of type 'BOOL' (aka 'int') to itself [-Werror,-Wself-assign]
mailutils 1:2.99.98-2 Failed [BUILDDEPS] Dependencies installation failed
mandelbulber 1:1.21.1-1.1 Failed [GCC_ERROR] ../src/Render3D.cpp:1412:25: error: non-aggregate type 'CVector3' cannot be initialized with an initializer list
mandos 1.6.9-1 Failed [GCC_ERROR] plugin-runner.c:430:66: error: function definition is not allowed here
maq 0.7.1-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] get_pos.c:33: undefined reference to `assemble_fill_buffer'
marble 4:4.14.2-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
mariadb-10.0 10.0.16-1 Failed [GCC_ERROR] dat.cpp:191:3: error: cannot use 'try' with exceptions disabled
massxpert 3.4.1-1 Failed [GCC_ERROR] atom.hpp:102:10: error: 'massXpert::Atom::clone' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
matchbox-panel 0.9.3-8.1 Failed [GCC_ERROR] mb-applet-battery.c:182:2: error: function definition is not allowed here
mate-system-tools 1.8.1+dfsg1-2 Failed [GCC_ERROR] network-locations.c:1139:3: error: void function 'gst_network_locations_delete_location' should not return a value [-Wreturn-type]
mawk 1.3.3-17 Failed [GCC_ERROR] print.c:85:11: error: expected parameter declarator
mayavi2 4.3.1-3.1 Failed [BUILDDEPS] DEPS
mcelog 104-1 Failed [GCC_ERROR] memutil.c:66:5: error: expected parameter declarator
mclibs 20061220+dfsg3-3 Failed [UNKNOWN] XXX
mdm 0.1.3-2.1 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
mediatomb 0.12.1-7 Failed [GCC_ERROR] ../src/timer.cc:40:1: error: explicit specialization of 'mutex' after instantiation
medusa 2.1.1-1 Failed [GCC_ERROR] medusa.c:1570:5: error: non-void function 'startLoginThreadPool' should return a value [-Wreturn-type]
meep-mpi-default 1.2.1-2 Failed [CLANG_ERROR/SEGMENTATION_FAULT] clang: error: unable to execute command: Segmentation fault
meep-openmpi 1.2.1-2 Failed [CLANG_ERROR/SEGMENTATION_FAULT] clang: error: unable to execute command: Segmentation fault
memcached 1.4.21-1.1 Failed [TESTS_FAILURES] Tests failures
memtest86+ 5.01-2 Failed [GCC_ERROR] main.c:223:2: error: indirect goto in function with no address-of-label expressions
memtest86 4.3.7-2 Failed [GCC_ERROR] main.c:229:2: error: indirect goto in function with no address-of-label expressions
mendexk 2.6e-3.2 Failed [GCC_ERROR] fread.c:552:5: error: non-void function 'chkpageattr' should return a value [-Wreturn-type]
mercator 0.3.2-1.1 Failed [GCC_ERROR] polygon_intersect.h:667:37: error: no member named 'm_orient' in 'WFMath::Polygon<2>'
mesa 10.4.2-2 Failed [CLANG_ERROR] clang: error: clang frontend command failed with exit code 70 (use -v to see invocation)
meshlab 1.3.2+dfsg1-2 Failed [GCC_ERROR] src/Geometry.inl:350:10: error: use of undeclared identifier 'printf'
metview 4.4.8+dfsg.1-8 Failed [GCC_ERROR] ./RequestPanel.h:145:3: error: no matching constructor for initialization of 'RequestPanel'
mgdiff 1.0-29.1 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
mgetty 1.1.36-2.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] pbm2g3.c:(.text+0x349): undefined reference to `putwhitespan'
mgp 1.13a+upstream20090219-6 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
micropolis-activity 0.0.20071228-7 Failed [GCC_ERROR] tclenv.c:298:2: error: non-void function 'unsetenv_tcl' should return a value [-Wreturn-type]
minc 2.2.00-6 Failed [UNKNOWN] dh_auto_test: make -j1 check returned exit code 2
mingw-w64 3.2.0-2 Failed [GCC_ERROR] ../../mingw-w64-tools/widl/include/winbase.h:1657:84: error: unknown type name '__builtin_ms_va_list'; did you mean '__builtin_va_list'?
minisat+ 1.0-2 Failed [GCC_ERROR] ADTs/Global.h:281:43: error: implicit instantiation of undefined template 'STATIC_ASSERTION_FAILURE<false>'
mira 4.0.2-1 Failed [CLANG_ERROR] clang: error: argument to '-V' is missing (expected 1 value)
mirrormagic 2.0.2.0deb1-11 Failed [CLANG_ERROR/CLANG_LD_ERROR] text.c:63: undefined reference to `ClearRectangle'
mknbi 1.4.4-10 Failed [UNKNOWN] XXX
mkvtoolnix 7.3.0-1 Failed [UNKNOWN] mv: cannot stat 'src/mmg/mmg': No such file or directory
mldemos 0.5.1-3 Failed [GCC_ERROR] ./SECovarianceFunction.h:23:13: error: field has incomplete type 'float []'
mlpy 2.2.0~dfsg1-2.1 Failed [BUILDDEPS] DEPS
mlton 20100608-5.1 Failed [CLANG_ERROR] clang: error: unsupported option '-gstabs+'
mm3d 1.3.7-1.4 Failed [CLANG_ERROR/CLANG_LD_ERROR] keycfg.cc:(.text+0x8d41): undefined reference to `llvm_gcda_start_file'
moc 1:2.5.0-1 Failed [BUILDDEPS] Dependencies installation failed
modemmanager 1.4.0-1 Failed [GCC_ERROR] test-wmc-utils.c:114:19: error: unused variable 'uml290_encap_outbuf' [-Werror,-Wunused-const-variable]
mokomaze 0.5.5+git8+dfsg0-3 Failed [GCC_ERROR] mainwindow.c:705:6: error: conflicting types for 'GoFallFixed'
mona 1.4-15-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ../DFA/.libs/libmonadfa.so: undefined reference to `make_loop'
mongodb 1:2.4.10-5 Failed [GCC_ERROR] src/mongo/shell/linenoise.cpp:435:18: error: unused variable 'SPECIAL_KEY' [-Werror,-Wunused-const-variable]
moonshot-ui 0.7.1-1 Failed [GCC_ERROR] examples/client.c:36:5: error: second parameter of 'main' (argument array) must be of type 'char **'
moria 5.6.debian.1-2 Failed [GCC_ERROR] signals.c:139:7: error: non-void function 'signal_handler' should return a value [-Wreturn-type]
mosh 1.2.4a-1 Failed [GCC_ERROR] mosh-server.cc:577:19: error: expression with side effects will be evaluated despite being used as an operand to 'typeid' [-Werror,-Wpotentially-evaluated-expression]
mozjs 1.8.5-1.0.0+dfsg-4.3 Failed [GCC_ERROR] ./jscompartment.h:372:8: error: visibility does not match previous declaration
mpich2 1.4.1-4.2 Failed [CONFIGURE_ERROR] configure: error: Cannot build shared libraries with this compiler
mpich 3.1-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lmpl
mrs 6.0.5+dfsg-1 Failed [UNKNOWN] XXX
mstflint 3.7.0+1.18.gcdb9f80-3 Failed [CLANG_ERROR] clang: error: ../tools_layouts: 'linker' input unused
mtd-utils 1:1.5.1-1 Failed [GCC_ERROR] mkfs.ubifs/hashtable/hashtable_itr.c:42:1: error: redefinition of a 'extern inline' function 'hashtable_iterator_key' is not supported in C99 mode
mtink 1.0.16-8 Failed [GCC_ERROR] mainSrc/rdRes.c:605:19: error: non-void function 'searchCmp' should return a value [-Wreturn-type]
mtools 4.0.18-2 Failed [GCC_ERROR] mainloop.c:89:15: error: expected ')'
muffin 2.2.6-4 Failed [GCC_ERROR] muffin-window-demo.c:993:32: error: implicit conversion from enumeration type 'PangoWrapMode' to different enumeration type 'GtkWrapMode' [-Werror,-Wenum-conversion]
multimon 1.0-7 Failed [CLANG_ERROR/CLANG_LD_ERROR] filter.h:106: multiple definition of `fsqr'
mupen64plus-audio-sdl 2.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
mupen64plus-core 2.0-7 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
mupen64plus-input-sdl 2.0-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
mupen64plus-rsp-hle 2.0-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
mupen64plus-rsp-z64 2.0.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
mupen64plus-ui-console 2.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
mupen64plus-video-arachnoid 2.0.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
mupen64plus-video-glide64 2.0.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
mupen64plus-video-glide64mk2 2.0-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
mupen64plus-video-rice 2.0-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
mupen64plus-video-z64 2.0.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
musescore 1.3+dfsg1-0.1 Failed [GCC_ERROR] rendermidi.cpp:559:36: error: variable length array of non-POD element type 'QList<OttavaShiftSegment>'
music123 16.3-6 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
musl 1.1.5-1 Failed [UNKNOWN] dh_install: musl-tools missing files (usr/bin/*), aborting
mustang 3.2.2-1 Failed [CLANG_ERROR] clang: error: the clang compiler does not support '-traditional'
mutt 1.5.23-3 Failed [GCC_ERROR] ../compress.c:297:6: error: conflicting types for 'restore_path'
mwrap 0.33-2 Failed [SEGMENTATION_FAULT/TESTS_FAILURES] Tests failures
mypaint 1.1.0-3 Failed [PYTHON_TRACEBACK/PYIMPORT] ImportError: ../_mypaintlib.so: undefined symbol: _ZN10BufferCompIL20BufferCompOutputType1ELj16384E12HueBlendModeE9blendfuncE
mysql-workbench 6.2.3+dfsg-7 Failed [GCC_ERROR] reporting.h:47:30: error: use of undeclared identifier 'Scintilla'
mz 0.40-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] mops_checksums.c:(.text+0x11a): undefined reference to `mops_hton4'
nas 1.9.4-3 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
nautilus-sendto 3.8.2-1 Failed [GCC_ERROR] nautilus-sendto.c:386:25: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
nbd 1:3.8-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] nbd-server.c:1326: undefined reference to `err_nonfatal'
ncap 1.9.2-2 Failed [GCC_ERROR] ncap_create.c:7:19: error: unused variable 'rcsid' [-Werror,-Wunused-const-variable]
ncl 6.2.0-3 Failed [GCC_ERROR/CLANG_ERROR] main.c:121:6: error: non-void function 'getargs' should return a value [-Wreturn-type]
ncmpcpp 0.5.10-2 Failed [GCC_ERROR] ./screen.h:265:3: error: cannot initialize object parameter of type 'NCurses::Window' with an expression of type 'NCurses::Scrollpad'
ndisc6 1.0.1-2 Failed [GCC_ERROR] trace-tcp.c:58:11: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
nemiver 0.9.5-2 Failed [GCC_ERROR] ./nmv-find-text-dialog.h:38:9: error: unknown type name 'SafePtr'
nepomuk-core 4:4.14.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
nescc 1.3.5-1 Failed [BUILDDEPS] Dependencies installation failed
netmaze 0.81+jpg0.82-14.1 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
netpipe 3.7.2-7 Failed [GCC_ERROR] mpi.h:118:56: error: expected identifier
netpipes 4.2-7 Failed [CLANG_ERROR/CLANG_LD_ERROR] faucet.c:191: undefined reference to `get_port'
netplug 1.2.9.2-1 Failed [GCC_ERROR] if_info.c:294:37: error: function definition is not allowed here
netrek-client-cow 3.3.0-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] redraw.c:90: undefined reference to `clearLocal'
network-manager-iodine 0.0.5-1 Failed [GCC_ERROR] nm-iodine-service.c:418:20: error: comparison of unsigned enum expression >= 0 is always true [-Werror,-Wtautological-compare]
network-manager-openvpn 0.9.10.0-1 Failed [CLANG_ERROR] error: unknown warning option '-Wno-unused-but-set-variable'; did you mean '-Wno-unused-const-variable'? [-Werror,-Wunknown-warning-option]
network-manager-pptp 0.9.10.0-1 Failed [CLANG_ERROR] error: unknown warning option '-Wno-unused-but-set-variable'; did you mean '-Wno-unused-const-variable'? [-Werror,-Wunknown-warning-option]
network-manager-vpnc 0.9.10.0-1 Failed [CLANG_ERROR] error: unknown warning option '-Wno-unused-but-set-variable'; did you mean '-Wno-unused-const-variable'? [-Werror,-Wunknown-warning-option]
netxx 0.3.2-2 Failed [GCC_ERROR] Netbuf.h:116:5: error: use of undeclared identifier 'setp'
newsbeuter 2.8-2 Failed [BUILDDEPS] Dependencies installation failed
nfft 3.2.3+dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] nfft_benchomp.c:34: undefined reference to `nfft_get_omp_num_threads'
nfstrace 0.3.1-2 Failed [GCC_ERROR] breakdown_analyzer.cpp:304:18: error: 'flush_statistics' overrides a member function but is not marked 'override' [-Werror,-Winconsistent-missing-override]
ng 1.5~beta1-3.1 Failed [GCC_ERROR] tty.c:284:3: error: non-void function 'ttinsl' should return a value [-Wreturn-type]
nitpic 0.1-15 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
nn 6.7.3-8 Failed [UNKNOWN] make[2]: *** No rule to make target ' articles.h', needed by 'nn.o'. Stop.
nordugrid-arc 4.2.0-3 Failed [GCC_ERROR] TestAssert.h:61:13: error: call to function 'operator<<' that is neither visible in the template definition nor found by argument-dependent lookup
notebook 0.2rel-2.2 Failed [GCC_ERROR] ui/nb_ui_interface_callbacks.c:80:3: error: non-void function 'nb_ui_cb_on_quit_clicked' should return a value [-Wreturn-type]
npapi-vlc 2.0.6-4 Failed [GCC_ERROR] ./control/nporuntime.h:225:13: error: static declaration of 'RuntimeNPClassGetProperty' follows non-static declaration
nqp 2014.07-3 Failed [CLANG_ERROR] clang: error: unknown argument: '-maccumulate-outgoing-args'
ns2 2.35+dfsg-2 Failed [GCC_ERROR] common/tclAppInit.cc:240:26: error: declaration of 'globalMemTrace' has a different language linkage
ntdb 1.0-5 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
ntrack 016-1.3 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
nufw 2.4.3-3.1 Failed [GCC_ERROR] sasl.c:368:7: error: non-void function 'get_proto_info' should return a value [-Wreturn-type]
nvidia-texture-tools 2.0.8-1+dfsg-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
obby 0.4.8-1 Failed [GCC_ERROR] ../inc/zeroconf_avahi.hpp:135:40: error: assigning to 'AvahiWatchEvent' from incompatible type 'int'
obexftp 0.23-4 Failed [GCC_ERROR] bfb_io.c:415:44: error: hex escape sequence out of range
ocaml-libvirt 0.6.1.2-1 Failed [GCC_ERROR] ./libvirt_c_epilogue.c:125:9: error: comparison of 0 <= unsigned enum expression is always true [-Werror,-Wtautological-compare]
oce 0.15-5 Failed [TESTS_FAILURES] Tests failures
octave-optim 1.4.0-1 Failed [UNKNOWN] XXX
octave-tsa 4.2.7-2 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 150 minutes of inactivity
odin 1.8.8-1 Failed [GCC_ERROR] tjhandler.cpp:6:1: error: explicit specialization of 'logLevel' after instantiation
ogmrip 1.0.1-1 Failed [GCC_ERROR] ogmrip-encoding.c:1200:7: error: cast to union type from type 'int' not present in union
ogre-1.8 1.8.0+dfsg1-7 Failed [UNKNOWN] open: No such file or directory
oidentd 2.0.8-6 Failed [CLANG_ERROR] clang: error: unknown argument: '-fvar-tracking'
okteta 4:4.14.2-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
okular 4:4.14.2-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
ola 0.9.1-1.1 Failed [GCC_ERROR] EnttecUsbProWidget.cpp:422:5: error: unused typedef 'widget_parameters_reply' [-Werror,-Wunused-local-typedef]
opari2 1.0.7+dfsg-5 Failed [UNKNOWN] cp: cannot stat 'debian/tmp/usr/share/doc/opari2/example/libpomp.a': No such file or directory
open-axiom 1.5.0~svn3056+ds-1 Failed [GCC_ERROR] ../../../src/hyper/ht_icon:7:22: error: constant expression evaluates to 247 which cannot be narrowed to type 'char' [-Wc++11-narrowing]
open-cobol 1.1-1 Failed [UNKNOWN] dh_auto_test: make -j1 check returned exit code 2
open-vm-tools 2:9.4.6-1770165-8 Failed [GCC_ERROR] hgfsServer.c:5630:30: error: comparison of constant 255 with expression of type 'HgfsOp' is always false [-Werror,-Wtautological-constant-out-of-range-compare]
opencv 2.4.9.1+dfsg-1 Failed [GCC_ERROR] setjmp.h:59:12: error: conflicting types for '__sigsetjmp'
openhpi 2.14.1-1.4 Failed [GCC_ERROR] ipmi.cpp:1563:83: error: alias must point to a defined variable or function
openjade1.3 1.3.2-13 Failed [GCC_ERROR] TeXFOTBuilder.cxx:1876:48: error: default initialization of an object of const type 'const TeXFOTBuilder::PageFloatFlowObj' without a user-provided default constructor
openjade 1.4devel1-21.1 Failed [GCC_ERROR] GroveBuilder.cxx:660:64: error: 'Chunk' is a private member of 'OpenSP::Chunk'
openjdk-6 6b34-1.13.6-1 Failed [GCC_ERROR/CLANG_ERROR] relocInfo.hpp:374:27: error: friend declaration specifying a default argument must be a definition
openjdk-7-jre-dcevm 7u60-3 Failed [GCC_ERROR/CLANG_ERROR] archDesc.cpp:335:35: error: '&&' within '||' [-Werror,-Wlogical-op-parentheses]
openjdk-7 7u75-2.5.4-3 Failed [CLANG_ERROR] clang: error: unsupported option '-dumpspecs'
openjdk-8 8u40-b27-1 Failed [CONFIGURE_ERROR] configure: error: GCC compiler is required. Try setting --with-tools-dir.
openjfx 8u40-b25-1 Failed [GCC_ERROR] ../../../../src/main/native/Source/WTF/wtf/RefPtr.h:157:30: error: no member named 'move' in namespace 'std'
openlibm 0.4+dfsg-1 Failed [TESTS_FAILURES] Tests failures
openmama 2.2.2.1-10 Failed [GCC_ERROR] mamajni.c:930:20: error: non-void function 'Java_com_wombat_mama_Mama_getProperty' should return a value [-Wreturn-type]
openmpi 1.6.5-9.2 Failed [BUILDDEPS] Dependencies installation failed
openmprtl 0.20140926-1 Failed [UNKNOWN] XXX
openmsx-catapult 0.10.1-2 Failed [UNKNOWN] XXX
openrc 0.13.1-4 Failed [GCC_ERROR] librc-depend.c:1304:6: error: function definition is not allowed here
opentoken 5.0a-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
openvswitch 2.3.0+git20140819-3 Failed [GCC_ERROR] ../lib/ovs-atomic.h:320:5: error: address argument to atomic operation must be a pointer to integer or pointer ('atomic_uint *' (aka '_Atomic(unsigned int) *') invalid)
overgod 1.0-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] actor.c:1018: undefined reference to `xpart'
p3scan 2:2.3.2-8.1 Failed [GCC_ERROR] p3scan.c:2418:83: error: function definition is not allowed here
pacman 10-17 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
padevchooser 0.9.4-1.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: browser.o: undefined reference to symbol 'pa_log_level_meta'
pads 1.2-11 Failed [CLANG_ERROR/CLANG_LD_ERROR] output.c:148: undefined reference to `find_asset'
pam-python 1.0.4-1 Failed [GCC_ERROR/TESTS_FAILURES] ctest.c:27:15: error: explicitly assigning value of variable of type 'void *' to itself [-Werror,-Wself-assign]
paw 1:2.14.04.dfsg.2-9 Failed [UNKNOWN] XXX
paxtest 1:0.9.11-2 Failed [GCC_ERROR] body.c:40:19: error: function definition is not allowed here
pccts 1.33MR33-6 Failed [GCC_ERROR] genmk.c:971:1: error: conflicting types for 'pclasses'
pchar 1.5-2 Failed [GCC_ERROR] ./pc.h:28:15: error: expected identifier
pcp 3.10.1 Failed [GCC_ERROR] access.o: r .L.str : Error: additional symbol
pcsc-cyberjack 3.99.5final.sp05-2 Failed [GCC_ERROR] CCIDReader.cpp:3118:77: error: invalid use of non-static data member 'abData'
pcscada 0.7.2-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
pcsxr 1.9.92-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] psxinterpreter.c:399: undefined reference to `doBranch'
pd-ggee 0.26-3 Failed [GCC_ERROR] gui/w_envgen.h:456:14: error: non-void function 'envgen_newclick' should return a value [-Wreturn-type]
pd-unauthorized 0.1-1 Failed [GCC_ERROR] countund.c:83:9: error: non-void function 'countund_limit' should return a value [-Wreturn-type]
pdf2htmlex 0.12+ds-1 Failed [UNKNOWN] XXX
pdftk 2.02-2 Failed [GCC_ERROR] javaprims.h:40:8: error: unknown linkage language
pdns-recursor 3.6.2-2 Failed [BUILDDEPS] Dependencies installation failed
pearpc 0.5.dfsg-2.1 Failed [GCC_ERROR] jitc_mmu.S:36:1: error: '.intel_syntax prefix' is not supported: registers must not have a '%' prefix in .intel_syntax
pennmush 1.8.2p8-1.1 Failed [GCC_ERROR] atr_tab.c:217:19: error: operand of type 'void' where arithmetic or pointer type is required
percona-xtradb-cluster-galera-2.x 1:2.11.2675-1 Failed [GCC_ERROR] galerautils/src/gu_time.h:25:14: error: use of old-style cast [-Werror,-Wold-style-cast]
perl 5.20.2-2 Failed [UNKNOWN] Can't open gnu/stubs-x32.h: No such file or directory
pfstmo 1.4-1 Failed [GCC_ERROR] display_adaptive_tmo.cpp:743:26: error: variable length array of non-POD element type 'UniformArrayLUT'
pfstools 1.8.5-2 Failed [GCC_ERROR] ./picture_io.h:9:7: error: forward declaration of class cannot have a nested name specifier
pgrouting 2.0.0-3 Failed [BUILDDEPS] DEPS
phnxdeco 0.33-3 Failed [GCC_ERROR] phnxdeco.c:37:5: error: first parameter of 'main' (argument count) must be of type 'int'
phonon 4:4.8.0-5 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
phototonic 1.4-2 Failed [CLANG_ERROR] clang: error: unknown argument: '-print-multiarch'
php5 5.6.7+dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] main.c:1608: undefined reference to `DTRACE_REQUEST_STARTUP'
picolisp 3.1.9.7-2 Failed [GCC_ERROR] main.c:720:34: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
pidgin-sipe 1.18.2-1 Failed [GCC_ERROR] sipe-ews-autodiscover.c:311:42: error: duplicate 'const' declaration specifier [-Werror,-Wduplicate-decl-specifier]
pidgin-twitter 0.9.2.1-4 Failed [GCC_ERROR/CLANG_ERROR] ./pidgin-twitter.h:9:10: fatal error: 'glib.h' file not found
pike7.8 7.8.866-3 Failed [BUILD_TIMEOUT] Build killed with signal TERM after 150 minutes of inactivity
pingus 0.7.6-2 Failed [GCC_ERROR] src/lisp/getters.hpp:33:15: error: no viable conversion from 'std::shared_ptr<Lisp>' to 'const lisp::Lisp *'
pixman 0.32.6-3 Failed [GCC_ERROR] ../../pixman/pixman-mmx.c:100:20: error: constraint 'K' expects an integer constant expression
pixmap 2.6pl4-18 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
pktools 2.5.3-1 Failed [GCC_ERROR] ../../src/algorithms/FeatureSelector.h:52:149: error: default arguments cannot be added to a function template that has already been declared
player 3.0.2+dfsg-4.2 Failed [GCC_ERROR] rflex.cc:319:1: error: static data member definition cannot specify a storage class
plee-the-bear 0.6.0-3.1 Failed [GCC_ERROR] rectangle.tpp:143:16: error: use 'template' keyword to treat 'cast_value_type_to' as a dependent template name
plplot 5.10.0+dfsg-1 Failed [UNKNOWN] XXX
pmacct 1.5.0-4 Failed [GCC_ERROR] bgp_logdump.c:159:41: error: non-void function 'bgp_peer_log_init' should return a value [-Wreturn-type]
pmk 0.10.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] detect_cpu.c:486: undefined reference to `x86_check_cpuid_flag'
pocl 0.10-10 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
poedit 1.6.10-2 Failed [GCC_ERROR] regex_compiler.h:413:20: error: non-type template argument is not a constant expression
policycoreutils 2.3-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '-shared'
polkit-qt-1 0.103.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
polybori 0.8.3-5 Failed [GCC_ERROR] PyPolyBoRi/monomial_wrapper.cc:50:64: error: call to non-static member function without an object argument
polygraph 4.3.2-1.2 Failed [GCC_ERROR] PglIntSym.cc:27:20: error: addition of default argument on redeclaration makes this constructor a default constructor
polyorb 2.11~20140418-3 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnats'
poppler 0.26.5-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
popplerkit.framework 0.0.20051227svn-7.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: warning: cannot find entry symbol _start; defaulting to 00000000004001c0
pork 0.99.8.1-2.2 Failed [BUILDDEPS] Dependencies installation failed
portmidi 1:184-2.2 Failed [GCC_ERROR] pm_linux/pmlinux.c:37:2: error: void function 'pm_init' should not return a value [-Wreturn-type]
posterazor 1.5.1-2 Failed [GCC_ERROR] TranslationEnglish.h:262:33: error: default initialization of an object of const type 'const TranslationEnglish' without a user-provided default constructor
postgresql-9.1 9.1.15-0+deb8u1 Failed [CONFIGURE_ERROR] configure: error: thread test program failed
postgresql-9.4 9.4.1-1 Failed [CONFIGURE_ERROR] configure: error: thread test program failed
postgresql-hll 2.7-2.1 Failed [CLANG_ERROR] error: invalid argument '-std=c99' not allowed with 'C++/ObjC++'
powermanga 0.93-1 Failed [GCC_ERROR] config_file.c:423:2: error: embedding a directive within macro arguments has undefined behavior [-Werror,-Wembedded-directive]
powertop 2.6.1-1 Failed [GCC_ERROR] cpu/cpu.cpp:470:18: error: variable length array of non-POD element type 'string' (aka 'basic_string<char>')
praat 5.4.0-1 Failed [GCC_ERROR] compiledict.cpp:168:13: error: no previous prototype for function 'LookupMnemName' [-Werror,-Wmissing-prototypes]
pretzel 2.0n-2-0.3 Failed [GCC_ERROR] pretty.nw:232:1: error: C++ requires a type specifier for all declarations
prime-phylo 1.0.11-2 Failed [GCC_ERROR] PrimeOptionMap.hh:161:32: error: no function named 'operator<<' with type 'std::ostream &(std::ostream &, const beep::PrimeOptionMap &)' was found in the specified scope
prison 1.1.1-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
projectcenter.app 0.6.1-1 Failed [GCC_ERROR] SyntaxDefinition.m:271:21: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
promoe 0.1.1-3 Failed [GCC_ERROR] coll.h:615:6: error: binding of reference to type 'Xmms::Coll::Coll' to a value of type 'const Xmms::Coll::Coll' drops qualifiers
psicode 3.4.0-5 Failed [GCC_ERROR] :68:1: error: C++ requires a type specifier for all declarations
psocksxx 0.0.6-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
ptouch-driver 1.3-8 Failed [CLANG_ERROR/CLANG_LD_ERROR] rastertoptch.c:816: undefined reference to `emit_feed_cut_mirror'
pulseview 0.2.0-1 Failed [GCC_ERROR] sweeptimingwidget.cpp:172:33: error: absolute value function 'abs' given an argument of type 'long' but has parameter of type 'int' which may cause truncation of value [-Werror,-Wabsolute-value]
putty 0.63-10 Failed [GCC_ERROR] x11fwd.c:315:6: error: taking the absolute value of unsigned type 'unsigned long' has no effect [-Werror,-Wabsolute-value]
py3cairo 1.10.0+dfsg-4 Failed [UNKNOWN] XXX
pygame 1.9.1release+dfsg-10 Failed [GCC_ERROR] src/scale_mmx64.c:424:27: error: invalid instruction mnemonic 'movsxl'
pymol 1.7.2.1-1 Failed [GCC_ERROR] layer0/Map.c:246:3: error: unterminated function-like macro invocation
pynac 0.3.2+dfsg-1 Failed [GCC_ERROR] exprseq.cpp:27:13: error: explicit specialization of 'tinfo_static' after instantiation
pypy 2.4.0+dfsg-3 Failed [PYTHON_TRACEBACK] XXX
python-admesh 0.98.1-1 Failed [UNKNOWN] error: [Errno 2] No such file or directorygenerating cadmesh.pxd and admesh.pyx
python-cffi 0.8.6-1 Failed [TESTS_FAILURES] Tests failures
python-demgengeo 1.0-2 Failed [GCC_ERROR] ../src/CircMNTableXY2D.cc:285:29: error: 's_output_style' is a protected member of 'MNTable2D'
python-enable 4.3.0-2 Failed [PYTHON_TRACEBACK] XXX
python-gevent 1.0.1-2 Failed [GCC_ERROR] libev/ev.c:970:42: error: '_Noreturn' keyword must precede function declarator
python-srp 1.0.4-1 Failed [BUILDDEPS] DEPS
python2.7 2.7.9-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
python3.4 3.4.2-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
qapt 1.3.0-2.1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qbs 1.3.4+dfsg-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qca2 2.0.3-6 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qdbm 1.8.78-5 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qelectrotech 0.22+svn897-1.1 Failed [GCC_ERROR] sources/customelement.cpp:514:16: error: variable length array of non-POD element type 'QPointF'
qjoypad 4.1.0-1 Failed [GCC_ERROR] layout_edit.cpp:42:18: error: variable length array of non-POD element type 'QString'
qlandkartegt 1.7.7-3 Failed [GCC_ERROR] Dictionary.h:69:46: error: call to non-static member function 'left2right' of 'Dictionary' from nested type 'iterator_base'
qmf 1.0.7~2011w23.2-2.1 Failed [GCC_ERROR] tst_qcop.cpp:234:35: error: 'Signals' is a protected member of 'QCopAdaptor'
qpdfview 0.4.12-1 Failed [GCC_ERROR] qalgorithms.h:300:28: error: invalid operands to binary expression ('int' and 'qpdfview::BookmarkItem')
qqwing 1.3.2-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qrouter 1.3.3-1 Failed [GCC_ERROR] qrouter.c:68:30: error: non-void function 'set_num_channels' should return a value [-Wreturn-type]
qt-gstreamer 0.10.2-2.1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qt4-x11 4:4.8.6+git64-g5dc8b2b+dfsg-3 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
qtconnectivity-opensource-src 5.3.2-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qtdeclarative-opensource-src 5.3.2-4 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qtenginio-opensource-src 5.3.2-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qtkeychain 0.4.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qtlocation-opensource-src 5.3.2-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qtmobility 1.2.0-3 Failed [GCC_ERROR] qmessagecontentcontainer_qmf.cpp:65:29: error: use of overloaded operator '==' is ambiguous (with operand types 'QMailMessagePartContainer::Location' and 'const QMailMessagePart::Location')
qtmultimedia-opensource-src 5.3.2-5 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qtquick1-opensource-src 5.3.2-3 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qtscript-opensource-src 5.3.2+dfsg-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qtsensors-opensource-src 5.3.2+dfsg-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qtsvg-opensource-src 5.3.2-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qttools-opensource-src 5.3.2-3 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qtwebkit-opensource-src 5.3.2+dfsg-3 Failed [CLANG_ERROR] clang: error: unsupported option '-gstabs'
qtwebkit 2.3.4.dfsg-3 Failed [CLANG_ERROR] clang: error: unsupported option '-gstabs'
qtwebsockets-opensource-src 5.3.2-5 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
qtxmlpatterns-opensource-src 5.3.2-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
quarry 0.2.0.dfsg.1-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] parse-list.c:891: undefined reference to `association_list_find_association'
qutecom 2.2.1+dfsg1-5.2 Failed [GCC_ERROR] phapi-old.c:3900:5: error: void function 'ph_reg_progress' should not return a value [-Wreturn-type]
radare2 0.9.6-3.1 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lperl