1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235 | Local copy of remote index is up-to-date and will be used.
Local copy of remote index is up-to-date and will be used.
Calculating dependencies... done!
Dependency resolution took 2.22 s (backtrack: 0/20).
>>> Verifying ebuild manifests
>>> Emerging binary (1 of 3) gnome-base/libglade-2.6.4-r5::gentoo
>>> Emerging binary (2 of 3) media-libs/jbigkit-2.1::gentoo
>>> Installing (1 of 3) gnome-base/libglade-2.6.4-r5::gentoo
>>> Installing (2 of 3) media-libs/jbigkit-2.1::gentoo
>>> Completed (1 of 3) gnome-base/libglade-2.6.4-r5::gentoo
>>> Completed (2 of 3) media-libs/jbigkit-2.1::gentoo
>>> Emerging (3 of 3) net-print/cnrdrvcups-lb-5.80-r1::gentoo
>>> Failed to emerge net-print/cnrdrvcups-lb-5.80-r1, Log file:
>>> '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/temp/build.log'
>>> Jobs: 2 of 3 complete, 1 failed Load avg: 2.14, 2.03, 1.95
* Package: net-print/cnrdrvcups-lb-5.80-r1:0
* Repository: gentoo
* USE: abi_x86_64 amd64 elibc_glibc kernel_linux
* FEATURES: network-sandbox preserve-libs sandbox usersandbox
>>> Unpacking source...
>>> Unpacking linux-UFRII-drv-v580-m17n-08.tar.gz to /var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work
>>> Unpacking ./cnrdrvcups-lb-5.80-1.05.tar.xz to /var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources
>>> Source unpacked in /var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work
>>> Preparing source in /var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources ...
* Running eautoreconf in '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend' ...
* Running 'aclocal --system-acdir=/var/calculate/tmp/portage/net-print/ [ ok ]ups-lb-5.80-r1/temp/aclocal' ...
* Running 'autoconf --force' ... [ ok ]
* Running 'autoheader --force' ... [ ok ]
* Running 'automake --add-missing --copy --foreign --force-missing' ... [ ok ]
* Running elibtoolize in: linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/
* Running eautoreconf in '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool' ...
* Running 'aclocal --system-acdir=/var/calculate/tmp/portage/net-print/ [ ok ]ups-lb-5.80-r1/temp/aclocal' ...
* Running 'autoconf --force' ... [ ok ]
* Running 'autoheader --force' ... [ ok ]
* Running 'automake --add-missing --copy --foreign --force-missing' ... [ ok ]
* Running elibtoolize in: linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/
* Running eautoreconf in '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp' ...
* Running 'glib-gettextize --copy --force' ... [ ok ]
* Running 'libtoolize --install --copy --force --automake' ... [ ok ]
* Running 'aclocal --system-acdir=/var/calculate/tmp/portage/net-print/ [ ok ]ups-lb-5.80-r1/temp/aclocal' ...
* Running 'autoconf --force' ... [ ok ]
* Running 'autoheader --force' ... [ ok ]
* Running 'automake --add-missing --copy --force-missing' ... [ ok ]
* Running elibtoolize in: linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/
* Applying portage/1.2.0 patch ...
* Applying sed/1.5.6 patch ...
* Applying as-needed/2.5.0 patch ...
* Applying verbose-pic/2.4.7 patch ...
* Applying clang-runtime-ltmain/2.4.7 patch ...
* Running eautoreconf in '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig' ...
* Running 'aclocal --system-acdir=/var/calculate/tmp/portage/net-print/ [ ok ]ups-lb-5.80-r1/temp/aclocal' ...
* Running 'autoconf --force' ... [ ok ]
* Running 'autoheader --force' ... [ ok ]
* Running 'automake --add-missing --copy --foreign --force-missing' ... [ ok ]
* Running elibtoolize in: linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/
* Running eautoreconf in '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter' ...
* Running 'aclocal --system-acdir=/var/calculate/tmp/portage/net-print/ [ ok ]ups-lb-5.80-r1/temp/aclocal' ...
* Running 'autoconf --force' ... [ ok ]
* Running 'autoheader --force' ... [ ok ]
* Running 'automake --add-missing --copy --foreign --force-missing' ... [ ok ]
* Running elibtoolize in: linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/
* Running eautoreconf in '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp' ...
* Running 'glib-gettextize --copy --force' ... [ ok ]
* Running 'libtoolize --install --copy --force --automake' ... [ ok ]
* Running 'aclocal --system-acdir=/var/calculate/tmp/portage/net-print/ [ ok ]ups-lb-5.80-r1/temp/aclocal' ...
* Running 'autoconf --force' ... [ ok ]
* Running 'autoheader --force' ... [ ok ]
* Running 'automake --add-missing --copy --foreign --force-missing' ... [ ok ]
* Running elibtoolize in: linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/
* Applying portage/1.2.0 patch ...
* Applying sed/1.5.6 patch ...
* Applying as-needed/2.5.0 patch ...
* Applying verbose-pic/2.4.7 patch ...
* Applying clang-runtime-ltmain/2.4.7 patch ...
* Running eautoreconf in '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files' ...
* Running 'aclocal --system-acdir=/var/calculate/tmp/portage/net-print/ [ ok ]ups-lb-5.80-r1/temp/aclocal' ...
* Running 'autoconf --force' ... [ ok ]
* Running 'automake --add-missing --copy --foreign --force-missing' ... [ ok ]
* Running elibtoolize in: linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/
* Running eautoreconf in '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca' ...
* Running 'libtoolize --install --copy --force --automake' ... [ ok ]
* Running 'aclocal --system-acdir=/var/calculate/tmp/portage/net-print/ [ ok ]ups-lb-5.80-r1/temp/aclocal' ...
* Running 'autoconf --force' ... [ ok ]
* Running 'autoheader --force' ... [ ok ]
* Running 'automake --add-missing --copy --foreign --force-missing' ... [ ok ]
* Running elibtoolize in: linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/
* Applying portage/1.2.0 patch ...
* Applying sed/1.5.6 patch ...
* Applying as-needed/2.5.0 patch ...
* Applying verbose-pic/2.4.7 patch ...
* Applying clang-runtime-ltmain/2.4.7 patch ...
* Running eautoreconf in '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca' ...
* Running 'aclocal --system-acdir=/var/calculate/tmp/portage/net-print/ [ ok ]ups-lb-5.80-r1/temp/aclocal' ...
* Running 'autoconf --force' ... [ ok ]
* Running 'autoheader --force' ... [ ok ]
* Running 'automake --add-missing --copy --foreign --force-missing' ... [ ok ]
* Running elibtoolize in: linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/
>>> Source prepared.
>>> Configuring source in /var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources ...
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.sub with /usr/share/gnuconfig/config.sub
./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --datarootdir=/usr/share --disable-dependency-tracking --disable-silent-rules --docdir=/usr/share/doc/cnrdrvcups-lb-5.80-r1 --htmldir=/usr/share/doc/cnrdrvcups-lb-5.80-r1/html --libdir=/usr/lib64
checking for a BSD-compatible install... /usr/lib/portage/python3.12/ebuild-helpers/xattr/install -c
checking whether sleep supports fractional seconds... yes
checking filesystem timestamp resolution... 0.01
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking xargs -n works... yes
checking for x86_64-pc-linux-gnu-gcc... x86_64-pc-linux-gnu-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether x86_64-pc-linux-gnu-gcc accepts -g... yes
checking for x86_64-pc-linux-gnu-gcc option to enable C11 features... none needed
checking whether x86_64-pc-linux-gnu-gcc understands -c and -o together... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of x86_64-pc-linux-gnu-gcc... none
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fcntl.h... yes
checking for stdlib.h... (cached) yes
checking for sys/ioctl.h... yes
checking for termios.h... yes
checking return type of signal handlers... void
checking for memmove... yes
checking for memset... yes
checking for select... yes
checking for strchr... yes
checking for strerror... yes
checking for strncasecmp... yes
checking for strstr... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.sub with /usr/share/gnuconfig/config.sub
./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --datarootdir=/usr/share --disable-dependency-tracking --disable-silent-rules --docdir=/usr/share/doc/cnrdrvcups-lb-5.80-r1 --htmldir=/usr/share/doc/cnrdrvcups-lb-5.80-r1/html --libdir=/usr/lib64
checking for a BSD-compatible install... /usr/lib/portage/python3.12/ebuild-helpers/xattr/install -c
checking whether sleep supports fractional seconds... yes
checking filesystem timestamp resolution... 0.01
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking xargs -n works... yes
checking for x86_64-pc-linux-gnu-gcc... x86_64-pc-linux-gnu-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether x86_64-pc-linux-gnu-gcc accepts -g... yes
checking for x86_64-pc-linux-gnu-gcc option to enable C11 features... none needed
checking whether x86_64-pc-linux-gnu-gcc understands -c and -o together... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of x86_64-pc-linux-gnu-gcc... none
checking for x86_64-pc-linux-gnu-ranlib... x86_64-pc-linux-gnu-ranlib
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.sub with /usr/share/gnuconfig/config.sub
./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --datarootdir=/usr/share --disable-dependency-tracking --disable-silent-rules --disable-static --docdir=/usr/share/doc/cnrdrvcups-lb-5.80-r1 --htmldir=/usr/share/doc/cnrdrvcups-lb-5.80-r1/html --with-sysroot=/ --libdir=/usr/lib64
checking for a BSD-compatible install... /usr/lib/portage/python3.12/ebuild-helpers/xattr/install -c
checking whether sleep supports fractional seconds... yes
checking filesystem timestamp resolution... 0.01
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking xargs -n works... yes
./configure: line 3270: COMMON_SUFFIX: command not found
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether make supports the include directive... yes (GNU style)
checking for x86_64-pc-linux-gnu-gcc... x86_64-pc-linux-gnu-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether x86_64-pc-linux-gnu-gcc accepts -g... yes
checking for x86_64-pc-linux-gnu-gcc option to enable C11 features... none needed
checking whether x86_64-pc-linux-gnu-gcc understands -c and -o together... yes
checking dependency style of x86_64-pc-linux-gnu-gcc... none
checking for library containing strerror... none required
checking for x86_64-pc-linux-gnu-gcc... (cached) x86_64-pc-linux-gnu-gcc
checking whether the compiler supports GNU C... (cached) yes
checking whether x86_64-pc-linux-gnu-gcc accepts -g... (cached) yes
checking for x86_64-pc-linux-gnu-gcc option to enable C11 features... (cached) none needed
checking whether x86_64-pc-linux-gnu-gcc understands -c and -o together... (cached) yes
checking dependency style of x86_64-pc-linux-gnu-gcc... (cached) none
checking for x86_64-pc-linux-gnu-gcc... (cached) x86_64-pc-linux-gnu-gcc
checking whether the compiler supports GNU C... (cached) yes
checking whether x86_64-pc-linux-gnu-gcc accepts -g... (cached) yes
checking for x86_64-pc-linux-gnu-gcc option to enable C11 features... (cached) none needed
checking whether x86_64-pc-linux-gnu-gcc understands -c and -o together... (cached) yes
checking dependency style of x86_64-pc-linux-gnu-gcc... (cached) none
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by x86_64-pc-linux-gnu-gcc... /usr/x86_64-pc-linux-gnu/bin/ld
checking if the linker (/usr/x86_64-pc-linux-gnu/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/x86_64-pc-linux-gnu-nm -B
checking the name lister (/usr/bin/x86_64-pc-linux-gnu-nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/x86_64-pc-linux-gnu/bin/ld option to reload object files... -r
checking for file... file
checking for x86_64-pc-linux-gnu-objdump... x86_64-pc-linux-gnu-objdump
checking how to recognize dependent libraries... pass_all
checking for x86_64-pc-linux-gnu-dlltool... x86_64-pc-linux-gnu-dlltool
checking how to associate runtime and link libraries... printf %s\n
checking for x86_64-pc-linux-gnu-ranlib... x86_64-pc-linux-gnu-ranlib
checking for x86_64-pc-linux-gnu-ar... x86_64-pc-linux-gnu-ar
checking for archiver @FILE support... @
checking for x86_64-pc-linux-gnu-strip... x86_64-pc-linux-gnu-strip
checking command to parse /usr/bin/x86_64-pc-linux-gnu-nm -B output from x86_64-pc-linux-gnu-gcc object... ok
checking for sysroot... /
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for x86_64-pc-linux-gnu-mt... no
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if x86_64-pc-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for x86_64-pc-linux-gnu-gcc option to produce PIC... -fPIC -DPIC
checking if x86_64-pc-linux-gnu-gcc PIC flag -fPIC -DPIC works... yes
checking if x86_64-pc-linux-gnu-gcc static flag -static works... no
checking if x86_64-pc-linux-gnu-gcc supports -c -o file.o... yes
checking if x86_64-pc-linux-gnu-gcc supports -c -o file.o... (cached) yes
checking whether the x86_64-pc-linux-gnu-gcc linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for x86_64-pc-linux-gnu-pkg-config... /usr/bin/x86_64-pc-linux-gnu-pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for gtk+-3.0 >= 3.0.0... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking if msgfmt accepts -c... yes
checking for gmsgfmt... /usr/bin/gmsgfmt
checking for xgettext... /usr/bin/xgettext
checking for catalogs to be installed... ja fr it de es zh_CN ko zh_TW
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating cnjatool/Makefile
config.status: creating src/Makefile
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default-1 commands
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.sub with /usr/share/gnuconfig/config.sub
./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --datarootdir=/usr/share --disable-dependency-tracking --disable-silent-rules --docdir=/usr/share/doc/cnrdrvcups-lb-5.80-r1 --htmldir=/usr/share/doc/cnrdrvcups-lb-5.80-r1/html --libdir=/usr/lib64
checking for a BSD-compatible install... /usr/lib/portage/python3.12/ebuild-helpers/xattr/install -c
checking whether sleep supports fractional seconds... yes
checking filesystem timestamp resolution... 0.01
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking xargs -n works... yes
checking for x86_64-pc-linux-gnu-gcc... x86_64-pc-linux-gnu-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether x86_64-pc-linux-gnu-gcc accepts -g... yes
checking for x86_64-pc-linux-gnu-gcc option to enable C11 features... none needed
checking whether x86_64-pc-linux-gnu-gcc understands -c and -o together... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of x86_64-pc-linux-gnu-gcc... none
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for _Bool... yes
checking for stdbool.h that conforms to C99 or later... yes
checking for an ANSI C-conforming const... yes
checking for size_t... yes
checking for memset... yes
checking for select... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.sub with /usr/share/gnuconfig/config.sub
./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --datarootdir=/usr/share --disable-dependency-tracking --disable-silent-rules --docdir=/usr/share/doc/cnrdrvcups-lb-5.80-r1 --htmldir=/usr/share/doc/cnrdrvcups-lb-5.80-r1/html --libdir=/usr/lib64
checking for a BSD-compatible install... /usr/lib/portage/python3.12/ebuild-helpers/xattr/install -c
checking whether sleep supports fractional seconds... yes
checking filesystem timestamp resolution... 0.01
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking xargs -n works... yes
checking for x86_64-pc-linux-gnu-gcc... x86_64-pc-linux-gnu-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether x86_64-pc-linux-gnu-gcc accepts -g... yes
checking for x86_64-pc-linux-gnu-gcc option to enable C11 features... none needed
checking whether x86_64-pc-linux-gnu-gcc understands -c and -o together... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of x86_64-pc-linux-gnu-gcc... none
checking for main in -lbuftool... no
checking for main in -lcups... yes
checking for main in -lcupsimage... yes
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for fcntl.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for _Bool... yes
checking for stdbool.h that conforms to C99 or later... yes
checking for an ANSI C-conforming const... yes
checking for memset... yes
checking for strdup... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.sub with /usr/share/gnuconfig/config.sub
./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --datarootdir=/usr/share --disable-dependency-tracking --disable-silent-rules --disable-static --docdir=/usr/share/doc/cnrdrvcups-lb-5.80-r1 --htmldir=/usr/share/doc/cnrdrvcups-lb-5.80-r1/html --with-sysroot=/ --libdir=/usr/lib64
checking for a BSD-compatible install... /usr/lib/portage/python3.12/ebuild-helpers/xattr/install -c
checking whether sleep supports fractional seconds... yes
checking filesystem timestamp resolution... 0.01
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking xargs -n works... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for x86_64-pc-linux-gnu-gcc... x86_64-pc-linux-gnu-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether x86_64-pc-linux-gnu-gcc accepts -g... yes
checking for x86_64-pc-linux-gnu-gcc option to enable C11 features... none needed
checking whether x86_64-pc-linux-gnu-gcc understands -c and -o together... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of x86_64-pc-linux-gnu-gcc... none
checking for x86_64-pc-linux-gnu-pkg-config... /usr/bin/x86_64-pc-linux-gnu-pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for gtk+-3.0 >= 3.0.0... yes
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking if msgfmt accepts -c... yes
checking for gmsgfmt... /usr/bin/gmsgfmt
checking for xgettext... /usr/bin/xgettext
checking for catalogs to be installed... fr it de es zh_CN ko zh_TW ja
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by x86_64-pc-linux-gnu-gcc... /usr/x86_64-pc-linux-gnu/bin/ld
checking if the linker (/usr/x86_64-pc-linux-gnu/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/x86_64-pc-linux-gnu-nm -B
checking the name lister (/usr/bin/x86_64-pc-linux-gnu-nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/x86_64-pc-linux-gnu/bin/ld option to reload object files... -r
checking for file... file
checking for x86_64-pc-linux-gnu-objdump... x86_64-pc-linux-gnu-objdump
checking how to recognize dependent libraries... pass_all
checking for x86_64-pc-linux-gnu-dlltool... x86_64-pc-linux-gnu-dlltool
checking how to associate runtime and link libraries... printf %s\n
checking for x86_64-pc-linux-gnu-ranlib... x86_64-pc-linux-gnu-ranlib
checking for x86_64-pc-linux-gnu-ar... x86_64-pc-linux-gnu-ar
checking for archiver @FILE support... @
checking for x86_64-pc-linux-gnu-strip... x86_64-pc-linux-gnu-strip
checking command to parse /usr/bin/x86_64-pc-linux-gnu-nm -B output from x86_64-pc-linux-gnu-gcc object... ok
checking for sysroot... /
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for x86_64-pc-linux-gnu-mt... no
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if x86_64-pc-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for x86_64-pc-linux-gnu-gcc option to produce PIC... -fPIC -DPIC
checking if x86_64-pc-linux-gnu-gcc PIC flag -fPIC -DPIC works... yes
checking if x86_64-pc-linux-gnu-gcc static flag -static works... no
checking if x86_64-pc-linux-gnu-gcc supports -c -o file.o... yes
checking if x86_64-pc-linux-gnu-gcc supports -c -o file.o... (cached) yes
checking whether the x86_64-pc-linux-gnu-gcc linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating cngplpmod/Makefile
config.status: creating controls/Makefile
config.status: creating controls/combo/Makefile
config.status: creating controls/checkbutton/Makefile
config.status: creating controls/dialog/Makefile
config.status: creating controls/radiobutton/Makefile
config.status: creating controls/button/Makefile
config.status: creating controls/spinbutton/Makefile
config.status: creating controls/entry/Makefile
config.status: creating controls/textview/Makefile
config.status: creating controls/label/Makefile
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing default-1 commands
config.status: executing libtool commands
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.sub with /usr/share/gnuconfig/config.sub
./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --datarootdir=/usr/share --disable-silent-rules --docdir=/usr/share/doc/cnrdrvcups-lb-5.80-r1 --htmldir=/usr/share/doc/cnrdrvcups-lb-5.80-r1/html --libdir=/usr/lib64
checking for a BSD-compatible install... /usr/lib/portage/python3.12/ebuild-helpers/xattr/install -c
checking whether sleep supports fractional seconds... yes
checking filesystem timestamp resolution... 0.01
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking xargs -n works... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.sub with /usr/share/gnuconfig/config.sub
./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --datarootdir=/usr/share --disable-dependency-tracking --disable-silent-rules --disable-static --docdir=/usr/share/doc/cnrdrvcups-lb-5.80-r1 --htmldir=/usr/share/doc/cnrdrvcups-lb-5.80-r1/html --with-sysroot=/ --libdir=/usr/lib64
checking for a BSD-compatible install... /usr/lib/portage/python3.12/ebuild-helpers/xattr/install -c
checking whether sleep supports fractional seconds... yes
checking filesystem timestamp resolution... 0.01
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking xargs -n works... yes
checking for x86_64-pc-linux-gnu-gcc... x86_64-pc-linux-gnu-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether x86_64-pc-linux-gnu-gcc accepts -g... yes
checking for x86_64-pc-linux-gnu-gcc option to enable C11 features... none needed
checking whether x86_64-pc-linux-gnu-gcc understands -c and -o together... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of x86_64-pc-linux-gnu-gcc... none
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by x86_64-pc-linux-gnu-gcc... /usr/x86_64-pc-linux-gnu/bin/ld
checking if the linker (/usr/x86_64-pc-linux-gnu/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/x86_64-pc-linux-gnu-nm -B
checking the name lister (/usr/bin/x86_64-pc-linux-gnu-nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/x86_64-pc-linux-gnu/bin/ld option to reload object files... -r
checking for file... file
checking for x86_64-pc-linux-gnu-objdump... x86_64-pc-linux-gnu-objdump
checking how to recognize dependent libraries... pass_all
checking for x86_64-pc-linux-gnu-dlltool... x86_64-pc-linux-gnu-dlltool
checking how to associate runtime and link libraries... printf %s\n
checking for x86_64-pc-linux-gnu-ranlib... x86_64-pc-linux-gnu-ranlib
checking for x86_64-pc-linux-gnu-ar... x86_64-pc-linux-gnu-ar
checking for archiver @FILE support... @
checking for x86_64-pc-linux-gnu-strip... x86_64-pc-linux-gnu-strip
checking command to parse /usr/bin/x86_64-pc-linux-gnu-nm -B output from x86_64-pc-linux-gnu-gcc object... ok
checking for sysroot... /
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for x86_64-pc-linux-gnu-mt... no
checking for mt... no
checking if : is a manifest tool... no
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if x86_64-pc-linux-gnu-gcc supports -fno-rtti -fno-exceptions... no
checking for x86_64-pc-linux-gnu-gcc option to produce PIC... -fPIC -DPIC
checking if x86_64-pc-linux-gnu-gcc PIC flag -fPIC -DPIC works... yes
checking if x86_64-pc-linux-gnu-gcc static flag -static works... no
checking if x86_64-pc-linux-gnu-gcc supports -c -o file.o... yes
checking if x86_64-pc-linux-gnu-gcc supports -c -o file.o... (cached) yes
checking whether the x86_64-pc-linux-gnu-gcc linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for x86_64-pc-linux-gnu-ranlib... (cached) x86_64-pc-linux-gnu-ranlib
checking for egrep... (cached) /bin/grep -E
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for an ANSI C-conforming const... yes
checking for memset... yes
checking for strcasecmp... yes
checking for strdup... yes
checking for strrchr... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating cnpklib/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/pdftocpca/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/files/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/config.sub with /usr/share/gnuconfig/config.sub
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.guess with /usr/share/gnuconfig/config.guess
* econf: updating linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cpca/config.sub with /usr/share/gnuconfig/config.sub
./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --datarootdir=/usr/share --disable-dependency-tracking --disable-silent-rules --docdir=/usr/share/doc/cnrdrvcups-lb-5.80-r1 --htmldir=/usr/share/doc/cnrdrvcups-lb-5.80-r1/html --libdir=/usr/lib64
checking for a BSD-compatible install... /usr/lib/portage/python3.12/ebuild-helpers/xattr/install -c
checking whether sleep supports fractional seconds... yes
checking filesystem timestamp resolution... 0.01
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking xargs -n works... yes
checking for x86_64-pc-linux-gnu-gcc... x86_64-pc-linux-gnu-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether x86_64-pc-linux-gnu-gcc accepts -g... yes
checking for x86_64-pc-linux-gnu-gcc option to enable C11 features... none needed
checking whether x86_64-pc-linux-gnu-gcc understands -c and -o together... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of x86_64-pc-linux-gnu-gcc... none
checking for main in -ldl... yes
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for pid_t... yes
checking for memset... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
>>> Source configured.
>>> Compiling source in /var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources ...
make -j17
make all-am
make[1]: Entering directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend'
x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -O2 -Wall -fPIC -O2 -march=x86-64 -pipe -fcommon -c -o cnusb.o cnusb.c
cnusb.c: In function ‘main’:
cnusb.c:1001:3: warning: ‘httpSeparate’ is deprecated: Use httpSeparateURI instead. [-Wdeprecated-declarations]
1001 | httpSeparate(argv[0], method, username, hostname, &port, resource);
| ^~~~~~~~~~~~
In file included from /usr/include/cups/ipp.h:19,
from /usr/include/cups/cups.h:28,
from cnusb.c:64:
/usr/include/cups/http.h:498:25: note: declared here
498 | extern void httpSeparate(const char *uri, char *method, char *username, char *host, int *port, char *resource) _CUPS_DEPRECATED_1_2_MSG("Use httpSeparateURI instead.");
| ^~~~~~~~~~~~
x86_64-pc-linux-gnu-gcc -O2 -Wall -fPIC -O2 -march=x86-64 -pipe -fcommon -Wl,--as-needed -L/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool -o cnusb cnusb.o -lcups -lgtk-x11-2.0 -lgobject-2.0 -lglib-2.0 -lgmodule-2.0
make[1]: Leaving directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/backend'
make -j17
make all-am
make[1]: Entering directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool'
x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -Wall -O2 -fPIC -O2 -march=x86-64 -pipe -fcommon -c -o buftool.o buftool.c
x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -Wall -O2 -fPIC -O2 -march=x86-64 -pipe -fcommon -c -o buflist.o buflist.c
rm -f libbuftool.a
x86_64-pc-linux-gnu-ar cr libbuftool.a buftool.o buflist.o
x86_64-pc-linux-gnu-ranlib libbuftool.a
make[1]: Leaving directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool'
make -j17
make all-recursive
make[1]: Entering directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp'
Making all in po
make[2]: Entering directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/po'
file=./`echo ja | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file ja.po
file=./`echo fr | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file fr.po
file=./`echo it | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file it.po
file=./`echo de | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file de.po
file=./`echo es | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file es.po
file=./`echo zh_CN | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file zh_CN.po
file=./`echo ko | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file ko.po
file=./`echo zh_TW | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file zh_TW.po
fr.po:6: warning: header field 'Language' missing in header
it.po:6: warning: header field 'Language' missing in header
de.po:6: warning: header field 'Language' missing in header
es.po:6: warning: header field 'Language' missing in header
ja.po:6: warning: header field 'Language' missing in header
ko.po:6: warning: header field 'Language' missing in header
zh_CN.po:6: warning: header field 'Language' missing in header
zh_TW.po:6: warning: header field 'Language' missing in header
make[2]: Leaving directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/po'
Making all in src
make[2]: Entering directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/src'
x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -DPACKAGE_DATA_DIR=\""/usr/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/share/locale"\" -DPACKAGE_CONFIG_DIR=\""/usr/share/cngplp/"\" -I/usr/include/libxml2/ -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/atk-1.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/elogind -I/usr/include/fribidi -I/usr/include/libpng16 -I/usr/include/pixman-1 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/gio-unix-2.0 -I/usr/lib64/libffi/include -pthread -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -O2 -Wall -O2 -march=x86-64 -pipe -fcommon -c -o main.o main.c
x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -DPACKAGE_DATA_DIR=\""/usr/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/share/locale"\" -DPACKAGE_CONFIG_DIR=\""/usr/share/cngplp/"\" -I/usr/include/libxml2/ -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/atk-1.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/elogind -I/usr/include/fribidi -I/usr/include/libpng16 -I/usr/include/pixman-1 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/gio-unix-2.0 -I/usr/lib64/libffi/include -pthread -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -O2 -Wall -O2 -march=x86-64 -pipe -fcommon -c -o mainwnd.o mainwnd.c
x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -DPACKAGE_DATA_DIR=\""/usr/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/share/locale"\" -DPACKAGE_CONFIG_DIR=\""/usr/share/cngplp/"\" -I/usr/include/libxml2/ -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/atk-1.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/elogind -I/usr/include/fribidi -I/usr/include/libpng16 -I/usr/include/pixman-1 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/gio-unix-2.0 -I/usr/lib64/libffi/include -pthread -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -O2 -Wall -O2 -march=x86-64 -pipe -fcommon -c -o printerinfo.o printerinfo.c
x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -DPACKAGE_DATA_DIR=\""/usr/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/share/locale"\" -DPACKAGE_CONFIG_DIR=\""/usr/share/cngplp/"\" -I/usr/include/libxml2/ -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/atk-1.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/elogind -I/usr/include/fribidi -I/usr/include/libpng16 -I/usr/include/pixman-1 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/gio-unix-2.0 -I/usr/lib64/libffi/include -pthread -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -O2 -Wall -O2 -march=x86-64 -pipe -fcommon -c -o load.o load.c
x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -DPACKAGE_DATA_DIR=\""/usr/share"\" -DPACKAGE_LOCALE_DIR=\""/usr/share/locale"\" -DPACKAGE_CONFIG_DIR=\""/usr/share/cngplp/"\" -I/usr/include/libxml2/ -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/atk-1.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/elogind -I/usr/include/fribidi -I/usr/include/libpng16 -I/usr/include/pixman-1 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/gio-unix-2.0 -I/usr/lib64/libffi/include -pthread -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -O2 -Wall -O2 -march=x86-64 -pipe -fcommon -c -o options.o options.c
printerinfo.c: In function ‘GetPrinterInfo’:
printerinfo.c:224:9: warning: ‘cupsGetPPD’ is deprecated: Use cupsCopyDestInfo and friends instead. [-Wdeprecated-declarations]
224 | ppd_file = cupsGetPPD(printer_name);
| ^~~~~~~~
In file included from printerinfo.c:22:
/usr/include/cups/ppd.h:359:26: note: declared here
359 | extern const char *cupsGetPPD(const char *name) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
| ^~~~~~~~~~
mainwnd.c: In function ‘UpdateMainDlg’:
mainwnd.c:484:20: warning: variable ‘MainCancel_button’ set but not used [-Wunused-but-set-variable]
484 | GtkWidget *MainCancel_button = NULL;
| ^~~~~~~~~~~~~~~~~
mainwnd.c:483:20: warning: variable ‘SetDefault_button’ set but not used [-Wunused-but-set-variable]
483 | GtkWidget *SetDefault_button = NULL;
| ^~~~~~~~~~~~~~~~~
mainwnd.c: In function ‘CreateMainDlg’:
mainwnd.c:681:20: warning: variable ‘Correct_Gray_checkbutton’ set but not used [-Wunused-but-set-variable]
681 | GtkWidget *Correct_Gray_checkbutton = NULL;
| ^~~~~~~~~~~~~~~~~~~~~~~~
mainwnd.c:680:20: warning: variable ‘Use_CIEColor_checkbutton’ set but not used [-Wunused-but-set-variable]
680 | GtkWidget *Use_CIEColor_checkbutton = NULL;
| ^~~~~~~~~~~~~~~~~~~~~~~~
/bin/sh ../libtool --tag=CC --mode=link x86_64-pc-linux-gnu-gcc -O2 -Wall -O2 -march=x86-64 -pipe -fcommon -rpath /usr/lib64 -Wl,--as-needed -L/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool -o cngplp main.o mainwnd.o printerinfo.o load.o options.o -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lcairo-gobject -lgdk_pixbuf-2.0 -latk-1.0 -lpango-1.0 -lcairo -lharfbuzz -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lxml2 -lcups -lgmodule-2.0 -lgtk-x11-2.0 -lgobject-2.0 -lglib-2.0 -lgmodule-2.0
libtool: link: x86_64-pc-linux-gnu-gcc -O2 -Wall -O2 -march=x86-64 -pipe -fcommon -o cngplp main.o mainwnd.o printerinfo.o load.o options.o -Wl,--as-needed -L/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lcairo-gobject -lgdk_pixbuf-2.0 -latk-1.0 -lpango-1.0 -lcairo -lharfbuzz -lgio-2.0 -lxml2 -lcups -lgtk-x11-2.0 -lgobject-2.0 -lglib-2.0 -lgmodule-2.0 -Wl,-rpath -Wl,/usr/lib64
make[2]: Leaving directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/src'
Making all in cnjatool
make[2]: Entering directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/cnjatool'
x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -O2 -Wall -fPIC -O2 -march=x86-64 -pipe -fcommon -c -o main.o main.c
main.c: In function ‘util_encodeBase64’:
main.c:174:24: warning: variable ‘pTmpSrc’ set but not used [-Wunused-but-set-variable]
174 | unsigned char *pTmpSrc = NULL;
| ^~~~~~~
main.c: In function ‘convert_encoding’:
main.c:1220:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
1220 | if ((int)(icon_d) != -1)
| ^
main.c: In function ‘AppName’:
main.c:1678:45: warning: return discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
1678 | return (appName == NULL) ? fullName : (appName + 1);
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
main.c: In function ‘get_line_from_buffer.constprop’:
main.c:406:17: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-truncation]
406 | strncpy(l_tmp, *line, strlen(*line));
| ^
main.c:406:17: note: length computed here
406 | strncpy(l_tmp, *line, strlen(*line));
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/bin/sh ../libtool --tag=CC --mode=link x86_64-pc-linux-gnu-gcc -O2 -Wall -fPIC -O2 -march=x86-64 -pipe -fcommon -Wl,--as-needed -L/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool -o cnjatool main.o -lcups -lgtk-x11-2.0 -lgobject-2.0 -lglib-2.0 -lgmodule-2.0
libtool: link: x86_64-pc-linux-gnu-gcc -O2 -Wall -fPIC -O2 -march=x86-64 -pipe -fcommon -o cnjatool main.o -Wl,--as-needed -L/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool -lcups -lgtk-x11-2.0 -lgobject-2.0 -lglib-2.0 -lgmodule-2.0
make[2]: Leaving directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp/cnjatool'
make[2]: Entering directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp'
make[2]: Leaving directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp'
make[1]: Leaving directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cngplp'
make -j17
make all-am
make[1]: Entering directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig'
x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -O2 -Wall -fpic -O2 -march=x86-64 -pipe -fcommon -c -o cnjbig.o cnjbig.c
x86_64-pc-linux-gnu-gcc -O2 -Wall -fpic -O2 -march=x86-64 -pipe -fcommon -Wl,--as-needed -L/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool -o cnjbigufr2 cnjbig.o -ldl -lgtk-x11-2.0 -lgobject-2.0 -lglib-2.0 -lgmodule-2.0
make[1]: Leaving directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/cnjbig'
make -j17
make all-am
make[1]: Entering directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter'
x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -O2 -Wall -D_UFR2_ -fpic -I../../include/ -O2 -march=x86-64 -pipe -fcommon -c -o rasterfilter.o rasterfilter.c
x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -O2 -Wall -D_UFR2_ -fpic -I../../include/ -O2 -march=x86-64 -pipe -fcommon -c -o cnrasterproc.o cnrasterproc.c
rasterfilter.c: In function ‘processPoster’:
rasterfilter.c:277:13: warning: unused variable ‘page’ [-Wunused-variable]
277 | int page = 0;
| ^~~~
rasterfilter.c:276:14: warning: unused variable ‘rawPath’ [-Wunused-variable]
276 | char rawPath[255];
| ^~~~~~~
rasterfilter.c: In function ‘main’:
rasterfilter.c:655:9: warning: ‘ppdOpenFile’ is deprecated: Use cupsCopyDestInfo and friends instead. [-Wdeprecated-declarations]
655 | ppd = ppdOpenFile(getenv("PPD"));
| ^~~
In file included from rasterfilter.c:21:
/usr/include/cups/ppd.h:390:26: note: declared here
390 | extern ppd_file_t *ppdOpenFile(const char *filename) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
| ^~~~~~~~~~~
rasterfilter.c:659:17: warning: ‘ppdMarkDefaults’ is deprecated: Use cupsCopyDestInfo and friends instead. [-Wdeprecated-declarations]
659 | ppdMarkDefaults(ppd);
| ^~~~~~~~~~~~~~~
/usr/include/cups/ppd.h:385:25: note: declared here
385 | extern void ppdMarkDefaults(ppd_file_t *ppd) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
| ^~~~~~~~~~~~~~~
rasterfilter.c:660:17: warning: ‘cupsMarkOptions’ is deprecated: Use cupsCopyDestInfo and friends instead. [-Wdeprecated-declarations]
660 | cupsMarkOptions(ppd, num_opt, p_cups_opt);
| ^~~~~~~~~~~~~~~
/usr/include/cups/ppd.h:363:25: note: declared here
363 | extern int cupsMarkOptions(ppd_file_t *ppd, int num_options, cups_option_t *options) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
| ^~~~~~~~~~~~~~~
rasterfilter.c:662:17: warning: ‘ppdFindMarkedChoice’ is deprecated: Use cupsCopyDestInfo and friends instead. [-Wdeprecated-declarations]
662 | p_Choice = ppdFindMarkedChoice(ppd, "CNPoster");
| ^~~~~~~~
/usr/include/cups/ppd.h:378:26: note: declared here
378 | extern ppd_choice_t *ppdFindMarkedChoice(ppd_file_t *ppd,
| ^~~~~~~~~~~~~~~~~~~
rasterfilter.c:663:58: warning: the comparison will always evaluate as ‘true’ for the address of ‘choice’ will never be NULL [-Waddress]
663 | if (p_Choice != NULL && p_Choice->choice != NULL)
| ^~
/usr/include/cups/ppd.h:155:17: note: ‘choice’ declared here
155 | char choice[PPD_MAX_NAME]; /* Computer-readable option name */
| ^~~~~~
rasterfilter.c:669:17: warning: ‘ppdClose’ is deprecated: Use cupsCopyDestInfo and friends instead. [-Wdeprecated-declarations]
669 | ppdClose(ppd);
| ^~~~~~~~
/usr/include/cups/ppd.h:365:25: note: declared here
365 | extern void ppdClose(ppd_file_t *ppd) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
| ^~~~~~~~
x86_64-pc-linux-gnu-gcc -O2 -Wall -D_UFR2_ -fpic -I../../include/ -O2 -march=x86-64 -pipe -fcommon -L../../lib/ -Wl,--as-needed -L/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/buftool -o rastertoufr2 rasterfilter.o cnrasterproc.o -lbuftool -lcups -lcupsimage -lcupsimage -lcups -lgtk-x11-2.0 -lgobject-2.0 -lglib-2.0 -lgmodule-2.0
make[1]: Leaving directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-common-5.80/rasterfilter'
make -j17
make all-recursive
make[1]: Entering directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp'
Making all in po
make[2]: Entering directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/po'
file=./`echo fr | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file fr.po
file=./`echo it | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file it.po
file=./`echo de | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file de.po
file=./`echo es | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file es.po
file=./`echo zh_CN | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file zh_CN.po
file=./`echo ko | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file ko.po
file=./`echo zh_TW | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file zh_TW.po
file=./`echo ja | sed 's,.*/,,'`.gmo \
&& rm -f $file && /usr/bin/gmsgfmt -c -o $file ja.po
de.po:6: warning: header field 'Language' missing in header
it.po:6: warning: header field 'Language' missing in header
zh_CN.po:6: warning: header field 'Language' missing in header
es.po:6: warning: header field 'Language' missing in header
fr.po:6: warning: header field 'Language' missing in header
ja.po:6: warning: header field 'Language' missing in header
ko.po:6: warning: header field 'Language' missing in header
zh_TW.po:6: warning: header field 'Language' missing in header
make[2]: Leaving directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/po'
Making all in cngplpmod
make[2]: Entering directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/cngplpmod'
/bin/sh ../libtool --tag=CC --mode=compile x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -Wall -O2 -fPIC -DDRIVER_TYPE_UFR2 -O2 -march=x86-64 -pipe -fcommon -c -o cngplpmod.lo cngplpmod.c
/bin/sh ../libtool --tag=CC --mode=compile x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -Wall -O2 -fPIC -DDRIVER_TYPE_UFR2 -O2 -march=x86-64 -pipe -fcommon -c -o ppdoptions.lo ppdoptions.c
/bin/sh ../libtool --tag=CC --mode=compile x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -Wall -O2 -fPIC -DDRIVER_TYPE_UFR2 -O2 -march=x86-64 -pipe -fcommon -c -o cupsoption.lo cupsoption.c
/bin/sh ../libtool --tag=CC --mode=compile x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -Wall -O2 -fPIC -DDRIVER_TYPE_UFR2 -O2 -march=x86-64 -pipe -fcommon -c -o execjob.lo execjob.c
/bin/sh ../libtool --tag=CC --mode=compile x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -Wall -O2 -fPIC -DDRIVER_TYPE_UFR2 -O2 -march=x86-64 -pipe -fcommon -c -o getdata.lo getdata.c
/bin/sh ../libtool --tag=CC --mode=compile x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -Wall -O2 -fPIC -DDRIVER_TYPE_UFR2 -O2 -march=x86-64 -pipe -fcommon -c -o setdata.lo setdata.c
libtool: compile: x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -Wall -O2 -fPIC -DDRIVER_TYPE_UFR2 -O2 -march=x86-64 -pipe -fcommon -c ppdoptions.c -fPIC -DPIC -o .libs/ppdoptions.o
libtool: compile: x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -Wall -O2 -fPIC -DDRIVER_TYPE_UFR2 -O2 -march=x86-64 -pipe -fcommon -c cngplpmod.c -fPIC -DPIC -o .libs/cngplpmod.o
libtool: compile: x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -Wall -O2 -fPIC -DDRIVER_TYPE_UFR2 -O2 -march=x86-64 -pipe -fcommon -c cupsoption.c -fPIC -DPIC -o .libs/cupsoption.o
libtool: compile: x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -Wall -O2 -fPIC -DDRIVER_TYPE_UFR2 -O2 -march=x86-64 -pipe -fcommon -c execjob.c -fPIC -DPIC -o .libs/execjob.o
libtool: compile: x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -Wall -O2 -fPIC -DDRIVER_TYPE_UFR2 -O2 -march=x86-64 -pipe -fcommon -c getdata.c -fPIC -DPIC -o .libs/getdata.o
libtool: compile: x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I.. -Wall -O2 -fPIC -DDRIVER_TYPE_UFR2 -O2 -march=x86-64 -pipe -fcommon -c setdata.c -fPIC -DPIC -o .libs/setdata.o
setdata.c: In function 'SetDataPPD':
setdata.c:617:116: warning: the comparison will always evaluate as 'true' for the address of 'multipunch' will never be NULL [-Waddress]
617 | LL) && (data->ppd_opt != NULL) && (data->ppd_opt->multipunch != NULL)){
| ^~
In file included from setdata.c:25:
cngplpmod.h:356:14: note: 'multipunch' declared here
356 | char multipunch[16];
| ^~~~~~~~~~
cngplpmod.c: In function 'SetPPDStoreOption':
cngplpmod.c:539:14: warning: unused variable 'lDecodeDstLen' [-Wunused-variable]
539 | long lDecodeDstLen = 0;
| ^~~~~~~~~~~~~
cngplpmod.c:538:15: warning: unused variable 'pDecodeDstBuf' [-Wunused-variable]
538 | char* pDecodeDstBuf = NULL;
| ^~~~~~~~~~~~~
cngplpmod.c: In function 'CreatePPDOptions':
cngplpmod.c:975:9: warning: 'cupsGetPPD' is deprecated: Use cupsCopyDestInfo and friends instead. [-Wdeprecated-declarations]
975 | char *pWorkPPD = (char *)cupsGetPPD(data->curr_printer);
| ^~~~
In file included from cngplpmod.h:32,
from cngplpmod.c:26:
/usr/include/cups/ppd.h:359:26: note: declared here
359 | extern const char *cupsGetPPD(const char *name) _CUPS_DEPRECATED_1_6_MSG("Use cupsCopyDestInfo and friends instead.");
| ^~~~~~~~~~
execjob.c: In function 'util_encodeBase64':
execjob.c:146:24: warning: variable 'pTmpSrc' set but not used [-Wunused-but-set-variable]
146 | unsigned char *pTmpSrc = NULL;
| ^~~~~~~
execjob.c: In function 'make_ppd_param':
execjob.c:718:31: warning: unused variable 'val' [-Wunused-variable]
718 | char *val;
| ^~~
ppdoptions.c: In function 'SetUIItemName':
ppdoptions.c:764:13: warning: variable 'type' set but not used [-Wunused-but-set-variable]
764 | int type = -1;
| ^~~~
execjob.c:1164:108: error: passing argument 3 of 'add_param_int' makes integer from pointer without a cast [-Wint-conversion]
1164 | _int(ptr_param, kPPD_Items_CNJobResultNoticeAddress, ppd_opt->job_result_notice_address);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
| |
| char *
execjob.c:431:53: note: expected 'int' but argument is of type 'char *'
431 | int add_param_int(char **ptr_param, char *name, int value)
| ~~~~^~~~~
ppdoptions.c: In function 'BuffToCUPSUIConfList':
ppdoptions.c:2728:41: warning: comparison between pointer and zero character constant [-Wpointer-compare]
2728 | for(ptr = strchr(ptr, '*'); ptr != '\0' && err == NO_ERROR; ptr = strchr(ptr, '*'))
| ^~
ppdoptions.c:2728:37: note: did you mean to dereference the pointer?
2728 | for(ptr = strchr(ptr, '*'); ptr != '\0' && err == NO_ERROR; ptr = strchr(ptr, '*'))
| ^
make[2]: *** [Makefile:414: execjob.lo] Error 1
make[2]: *** Waiting for unfinished jobs....
ppdoptions.c: At top level:
ppdoptions.c:5231:13: warning: 'ChkOffsetNum' defined but not used [-Wunused-function]
5231 | static void ChkOffsetNum(cngplpData *data, char *item_name, char *opt_name, int flag)
| ^~~~~~~~~~~~
ppdoptions.c:4426:13: warning: 'ResetFormListDiable' defined but not used [-Wunused-function]
4426 | static void ResetFormListDiable(FormList *form_list)
| ^~~~~~~~~~~~~~~~~~~
ppdoptions.c:4362:13: warning: 'ChkOverlayForm' defined but not used [-Wunused-function]
4362 | static void ChkOverlayForm(cngplpData *data, char *item_name, char *opt_name, int flag)
| ^~~~~~~~~~~~~~
ppdoptions.c:2287:12: warning: 'CheckItemCmp' defined but not used [-Wunused-function]
2287 | static int CheckItemCmp(char *str, const char *item)
| ^~~~~~~~~~~~
getdata.c: In function 'ToChar':
getdata.c:727:17: warning: '__builtin_strncpy' output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation]
727 | strncpy(ret, value, size - 1);
| ^
getdata.c:721:24: note: length computed here
721 | size = strlen(value) + 1;
| ^~~~~~~~~~~~~
cngplpmod.c: In function 'SetPPDStoreOption':
cngplpmod.c:731:33: warning: '__builtin_strncpy' specified bound 385 equals destination size [-Wstringop-truncation]
731 | strncpy(ppd_opt->job_note->details, opt->value, sizeof(ppd_opt->job_note->details));
| ^
cngplpmod.c:728:33: warning: '__builtin_strncpy' specified bound 97 equals destination size [-Wstringop-truncation]
728 | strncpy(ppd_opt->job_note->note, opt->value, sizeof(ppd_opt->job_note->note));
| ^
cngplpmod.c: In function 'cngplpNew':
cngplpmod.c:90:17: warning: '__builtin_strncpy' output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation]
90 | strncpy(data->file_name, file_name, num);
| ^
cngplpmod.c:87:27: note: length computed here
87 | int num = strlen(file_name);
| ^~~~~~~~~~~~~~~~~
setdata.c:1074:25: warning: '__builtin_strncpy' specified bound 385 equals destination size [-Wstringop-truncation]
1074 | strncpy(data->ppd_opt->job_note->details, value, size);
| ^
setdata.c:1065:25: warning: '__builtin_strncpy' specified bound 97 equals destination size [-Wstringop-truncation]
1065 | strncpy(data->ppd_opt->job_note->note, value, size);
| ^
setdata.c: In function 'SaveSecuredData':
setdata.c:2129:9: warning: '__builtin_strncpy' output may be truncated copying 127 bytes from a string of length 127 [-Wstringop-truncation]
2129 | strncpy(data->save_data->secured->doc, special->doc_name, 127);
| ^
setdata.c:2130:9: warning: '__builtin_strncpy' output may be truncated copying 127 bytes from a string of length 127 [-Wstringop-truncation]
2130 | strncpy(data->save_data->secured->usr, special->usr_name, 127);
| ^
setdata.c:2131:9: warning: '__builtin_strncpy' output may be truncated copying 7 bytes from a string of length 35 [-Wstringop-truncation]
2131 | strncpy(data->save_data->secured->pass, special->passwd_array, 7);
| ^
setdata.c: In function 'RestoreSecuredData':
setdata.c:2147:9: warning: '__builtin_strncpy' output may be truncated copying 127 bytes from a string of length 127 [-Wstringop-truncation]
2147 | strncpy(special->doc_name, secured->doc, 127);
| ^
setdata.c:2148:9: warning: '__builtin_strncpy' output may be truncated copying 127 bytes from a string of length 127 [-Wstringop-truncation]
2148 | strncpy(special->usr_name, secured->usr, 127);
| ^
setdata.c:2149:9: warning: '__builtin_strncpy' output may be truncated copying 7 bytes from a string of length 7 [-Wstringop-truncation]
2149 | strncpy(special->passwd_array, secured->pass, 7);
| ^
setdata.c: In function 'SaveJobAccountData':
setdata.c:2176:9: warning: '__builtin_strncpy' output may be truncated copying 9 bytes from a string of length 11 [-Wstringop-truncation]
2176 | strncpy(data->save_data->job->id, special->job_account_id, 9);
| ^
setdata.c:2177:9: warning: '__builtin_strncpy' output may be truncated copying 7 bytes from a string of length 7 [-Wstringop-truncation]
2177 | strncpy(data->save_data->job->ps, special->job_account_passwd, 7);
| ^
setdata.c: In function 'RestoreJobAccountData':
setdata.c:2192:9: warning: '__builtin_strncpy' output may be truncated copying 9 bytes from a string of length 11 [-Wstringop-truncation]
2192 | strncpy(special->job_account_id, job->id, 9);
| ^
setdata.c:2193:9: warning: '__builtin_strncpy' output may be truncated copying 7 bytes from a string of length 7 [-Wstringop-truncation]
2193 | strncpy(special->job_account_passwd, job->ps, 7);
| ^
setdata.c: In function 'SaveBoxidData':
setdata.c:2220:9: warning: '__builtin_strncpy' output may be truncated copying 127 bytes from a string of length 127 [-Wstringop-truncation]
2220 | strncpy(data->save_data->boxid->enter_name, special->enter_name, 127);
| ^
setdata.c: In function 'RestoreBoxidData':
setdata.c:2239:9: warning: '__builtin_strncpy' output may be truncated copying 127 bytes from a string of length 127 [-Wstringop-truncation]
2239 | strncpy(special->enter_name, boxid->enter_name, 127);
| ^
setdata.c: In function 'SaveHoldQueueData':
setdata.c:2395:9: warning: '__builtin_strncpy' output may be truncated copying 127 bytes from a string of length 127 [-Wstringop-truncation]
2395 | strncpy(data->save_data->holdqueue->enter_name, special_func->hold_name, 127);
| ^
setdata.c: In function 'RestoreHoldQueueData':
setdata.c:2408:9: warning: '__builtin_strncpy' output may be truncated copying 127 bytes from a string of length 127 [-Wstringop-truncation]
2408 | strncpy(special_func->hold_name, hold_queue->enter_name, 127);
| ^
make[2]: Leaving directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp/cngplpmod'
make[1]: *** [Makefile:617: all-recursive] Error 1
make[1]: Leaving directory '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp'
make: *** [Makefile:473: all] Error 2
* ERROR: net-print/cnrdrvcups-lb-5.80-r1::gentoo failed (compile phase):
* emake failed
*
* If you need support, post the output of `emerge --info '=net-print/cnrdrvcups-lb-5.80-r1::gentoo'`,
* the complete build log and the output of `emerge -pqv '=net-print/cnrdrvcups-lb-5.80-r1::gentoo'`.
* The complete build log is located at '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/temp/build.log'.
* The ebuild environment file is located at '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/temp/environment'.
* Working directory: '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp'
* S: '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources'
* Messages for package net-print/cnrdrvcups-lb-5.80-r1:
* ERROR: net-print/cnrdrvcups-lb-5.80-r1::gentoo failed (compile phase):
* emake failed
*
* If you need support, post the output of `emerge --info '=net-print/cnrdrvcups-lb-5.80-r1::gentoo'`,
* the complete build log and the output of `emerge -pqv '=net-print/cnrdrvcups-lb-5.80-r1::gentoo'`.
* The complete build log is located at '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/temp/build.log'.
* The ebuild environment file is located at '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/temp/environment'.
* Working directory: '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources/cnrdrvcups-lb-5.80/cngplp'
* S: '/var/calculate/tmp/portage/net-print/cnrdrvcups-lb-5.80-r1/work/linux-UFRII-drv-v580-m17n/Sources'
* GNU info directory index is up-to-date.
|