-
Notifications
You must be signed in to change notification settings - Fork 0
/
magickbuild
3636 lines (3605 loc) · 519 KB
/
magickbuild
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
==> Making package: imagemagick6 6.9.12.58-1 (Sat 23 Jul 2022 04:48:35 PM EDT)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Found ImageMagick-6.9.12-58.tar.gz
-> Found ImageMagick-6.9.12-58.tar.gz.asc
-> Found arch-fonts.diff
==> Validating source files with sha256sums...
ImageMagick-6.9.12-58.tar.gz ... Passed
ImageMagick-6.9.12-58.tar.gz.asc ... Skipped
arch-fonts.diff ... Passed
==> Verifying source file signatures with gpg...
ImageMagick-6.9.12-58.tar.gz ... Passed
==> Extracting sources...
-> Extracting ImageMagick-6.9.12-58.tar.gz with bsdtar
==> Starting prepare()...
patching file config/type-dejavu.xml.in
patching file config/type-ghostscript.xml.in
==> Removing existing $pkgdir/ directory...
==> Starting build()...
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether UID '1000' is supported by ustar format... yes
checking whether GID '100' is supported by ustar format... yes
checking how to create a ustar tar archive... gnutar
checking whether make supports nested variables... (cached) yes
Configuring ImageMagick 6.9.12-58
checking whether build environment is sane... yes
checking whether make supports the include directive... yes (GNU style)
checking for gcc... 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 gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
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 wchar.h... yes
checking for minix/config.h... no
checking for sys/param.h... yes
checking for vfork.h... no
checking for sys/select.h... yes
checking for sys/socket.h... yes
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking for ar... ar
checking the archiver (ar) interface... ar
checking for gcc... (cached) gcc
checking whether the compiler supports GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to enable C11 features... (cached) none needed
checking whether gcc understands -c and -o together... (cached) yes
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking how to print strings... printf
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for C compiler vendor... gnu
checking CFLAGS for most reasonable warnings... -Wall
checking whether make sets $(MAKE)... (cached) yes
checking whether ln -s works... yes
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for gawk... (cached) gawk
checking if malloc debugging is wanted... no
checking for __attribute__... yes
checking for gcc architecture flag...
checking for gcc architecture flag... unknown
checking pkg-config is at least version 0.20... yes
checking for C compiler vendor... (cached) gnu
checking if LD -Wl,--version-script works... yes
checking for linker lazyload option... none
checking whether gcc is Clang... no
checking whether pthreads work with "-pthread" and "-lpthread"... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
checking for gcc option to support OpenMP... -fopenmp
checking for CL/cl.h... yes
checking for OpenCL library... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for _LARGEFILE_SOURCE value needed for large files... no
checking Linux compatible sendfile()...
./configure: line 11331: test: =: unary operator expected
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
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/bin/ld option to reload object files... -r
checking for file... file
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/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 for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... yes
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 g++... g++
checking whether the compiler supports GNU C++... yes
checking whether g++ accepts -g... yes
checking for g++ option to enable C++11 features... none needed
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether gcc needs -traditional... no
checking whether to enable assertions... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for arm/limits.h... no
checking for arpa/inet.h... yes
checking for complex.h... yes
checking for errno.h... yes
checking for fcntl.h... yes
checking for float.h... yes
checking for limits.h... yes
checking for linux/unistd.h... yes
checking for locale.h... yes
checking for malloc.h... yes
checking for machine/param.h... no
checking for mach-o/dyld.h... no
checking for netdb.h... yes
checking for netinet/in.h... yes
checking for OS.h... no
checking for process.h... no
checking for stddef.h... yes
checking for sun_prefetch.h... no
checking for stdarg.h... yes
checking for sys/ipc.h... yes
checking for sys/mman.h... yes
checking for sys/resource.h... yes
checking for sys/sendfile.h... yes
checking for sys/socket.h... (cached) yes
checking for sys/syslimits.h... no
checking for sys/time.h... yes
checking for sys/times.h... yes
checking for sys/uio.h... yes
checking for sys/wait.h... yes
checking for utime.h... yes
checking for wchar.h... (cached) yes
checking for xlocale.h... no
checking for _Bool... yes
checking for stdbool.h that conforms to C99... yes
checking for working volatile... yes
checking for preprocessor stringizing operator... yes
checking whether stat file-mode macros are broken... no
checking whether struct tm is in sys/time.h or time.h... time.h
checking for gcc options needed to detect all undeclared functions... none needed
checking for struct tm.tm_zone... yes
checking whether #! works in shell scripts... yes
checking whether char is unsigned... no
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for C/C++ restrict keyword... __restrict__
checking for working volatile... (cached) yes
checking whether byte ordering is bigendian... no
checking for int8_t... yes
checking for int16_t... yes
checking for int32_t... yes
checking for int64_t... yes
checking for unsigned long long int... yes
checking for long long int... yes
checking for intmax_t... yes
checking for intptr_t... yes
checking for mbstate_t... yes
checking for mode_t... yes
checking for off_t... yes
checking for pid_t... yes
checking for size_t... yes
checking for ssize_t... yes
checking for uid_t in sys/types.h... yes
checking for uint8_t... yes
checking for uint16_t... yes
checking for uint32_t... yes
checking for uint64_t... yes
checking for uintmax_t... yes
checking for uintptr_t... yes
checking size of float_t... 4
checking size of double_t... 8
checking size of float... 4
checking size of double... 8
checking size of long double... 16
checking size of unsigned long long... 8
checking size of void *... 8
checking whether our compiler supports __func__... checking whether closedir returns void... no
checking for getpagesize... yes
checking for fork... yes
checking for vfork... yes
checking for vprintf... yes
checking for working mmap... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking for GNU libc compatible malloc... yes
checking for working memcmp... yes
checking for GNU libc compatible realloc... yes
checking types of arguments for select... int,fd_set *,struct timeval *
checking for working strtod... yes
checking whether strerror_r is declared... yes
checking whether strerror_r returns char *... yes
checking for sqrt in -lm... yes
checking for library containing gethostbyname... none required
checking for library containing socket... none required
checking for library containing clock_gettime... none required
checking whether clock_gettime supports CLOCK_REALTIME... yes
checking whether pread is declared... yes
checking whether pwrite is declared... yes
checking whether strlcpy is declared... no
checking whether vsnprintf is declared... yes
checking whether the compiler supports GNU C++... (cached) yes
checking whether g++ accepts -g... (cached) yes
checking for g++ option to enable C++11 features... (cached) none needed
checking dependency style of g++... (cached) gcc3
checking whether the compiler recognizes bool as a built-in type... yes
checking whether the compiler implements namespaces... yes
checking if g++ supports namespace std... yes
checking for g++ option to support OpenMP... -fopenmp
checking whether C++ compiler is sufficient for Magick++... yes
checking for X11 configure files...
checking for GOMP_parallel_start in -lgomp... yes
checking for BZLIB support ...
checking for bzlib.h... yes
checking for BZ2_bzDecompress in -lbz2... yes
checking if BZLIB package is complete... yes
checking for X... libraries , headers
checking for gethostbyname... yes
checking for connect... yes
checking for remove... yes
checking for shmat... yes
checking for IceConnectionNumber in -lICE... yes
-------------------------------------------------------------
checking for X11...
checking for shmctl... yes
checking for XShmAttach in -lXext... yes
checking for XShapeCombineMask in -lXext... yes
checking for XtSetEventDispatcher in -lXt... yes
-------------------------------------------------------------
checking for zlib >= 1.0.0... yes
-------------------------------------------------------------
checking for libzstd >= 1.0.0... yes
-------------------------------------------------------------
checking for libltdl...
checking for ltdl.h... yes
checking for lt_dlinit in -lltdl... yes
checking if libltdl package is complete... yes
-------------------------------------------------------------
checking for FLIF...
checking for flif.h... no
checking for flif_create_decoder in -lflif... no
checking if FLIF package is complete... no
-------------------------------------------------------------
checking for ddjvuapi >= 3.5.0... yes
-------------------------------------------------------------
checking for fontconfig >= 2.1.0... yes
-------------------------------------------------------------
checking for freetype2... yes
-------------------------------------------------------------
checking for raqm... yes
checking for Windows GDI32 support...
checking for windows.h... no
checking for winuser.h... no
checking for wingdi.h... no
checking if Windows GDI32 support is complete... no
-------------------------------------------------------------
checking for libheif... yes
-------------------------------------------------------------
checking for JBIG...
checking for jbig.h... yes
checking for jbg_dec_init in -ljbig... yes
checking if JBIG package is complete... yes
-------------------------------------------------------------
checking for JPEG...
checking for jconfig.h... yes
checking for jerror.h... yes
checking for jmorecfg.h... yes
checking for jpeglib.h... yes
checking for jpeg_read_header in -ljpeg... yes
checking if JPEG package is complete... yes
-------------------------------------------------------------
checking for brunsli...
checking for brunsli/decode.h... no
checking for brunsli/encode.h... no
checking for DecodeBrunsli in -lbrunslidec-c... no
checking for EncodeBrunsli in -lbrunslienc-c... no
checking if brunsli package is complete... no
-------------------------------------------------------------
checking for lcms2 >= 2.0.0... yes
checking for lcms2/lcms2.h... no
-------------------------------------------------------------
checking for libopenjp2 >= 2.1.0... yes
-------------------------------------------------------------
checking for lqr-1 >= 0.1.0... yes
-------------------------------------------------------------
checking for liblzma >= 2.9.0... yes
-------------------------------------------------------------
checking for OpenEXR >= 1.0.6... yes
-------------------------------------------------------------
checking for pangocairo >= 1.28.1... yes
checking for pango >= 1.28.1... yes
-------------------------------------------------------------
checking for libpng >= 1.0.0... yes
-------------------------------------------------------------
checking for libraw_r >= 0.14.8... yes
-------------------------------------------------------------
checking for librsvg-2.0 >= 2.9.0... yes
checking for cairo-svg... yes
-------------------------------------------------------------
checking for TIFF...
checking for tiff.h... yes
checking for tiffio.h... yes
checking for TIFFOpen in -ltiff... yes
checking for TIFFClientOpen in -ltiff... yes
checking for TIFFIsByteSwapped in -ltiff... yes
checking for TIFFReadRGBATile in -ltiff... yes
checking for TIFFReadRGBAStrip in -ltiff... yes
checking if TIFF package is complete... yes
checking for tiffconf.h... yes
checking for TIFFIsCODECConfigured... yes
checking for TIFFMergeFieldInfo... yes
checking for TIFFIsBigEndian... yes
checking for TIFFSetErrorHandlerExt... yes
checking for TIFFSetTagExtender... yes
checking for TIFFReadEXIFDirectory... yes
checking for TIFFReadGPSDirectory... yes
checking for TIFFSetWarningHandlerExt... yes
checking for TIFFSwabArrayOfTriples... yes
-------------------------------------------------------------
checking for libwebp >= 0.4.1... yes
checking for libwebpmux >= 0.5.0 libwebpdemux >= 0.5.0... yes
checking for WMF support...
checking for libwmf/ipa.h... yes
checking for wmf_lite_create in -lwmflite... yes
checking if WMF package is complete... yes
-------------------------------------------------------------
checking for libxml-2.0 >= 2.0.0... yes
checking for acosh... yes
checking for _aligned_malloc... no
checking for aligned_malloc... no
checking for asinh... yes
checking for atanh... yes
checking for atoll... yes
checking for atexit... yes
checking for cabs... yes
checking for carg... yes
checking for cimag... yes
checking for creal... yes
checking for clock... yes
checking for clock_getres... yes
checking for clock_gettime... yes
checking for ctime_r... yes
checking for directio... no
checking for erf... yes
checking for _exit... yes
checking for execvp... yes
checking for fchmod... yes
checking for floor... yes
checking for fork... (cached) yes
checking for ftime... yes
checking for ftruncate... yes
checking for getc_unlocked... yes
checking for getcwd... yes
checking for getentropy... yes
checking for getexecname... no
checking for getdtablesize... yes
checking for getpagesize... (cached) yes
checking for getpid... yes
checking for getpwnam_r... yes
checking for getrlimit... yes
checking for getrusage... yes
checking for gettimeofday... yes
checking for gmtime_r... yes
checking for isnan... yes
checking for j0... yes
checking for j1... yes
checking for lltostr... no
checking for localtime_r... yes
checking for lstat... yes
checking for mkdir... yes
checking for memmove... yes
checking for memset... yes
checking for mkstemp... yes
checking for munmap... yes
checking for nanosleep... yes
checking for newlocale... yes
checking for _NSGetExecutablePath... no
checking for pclose... yes
checking for _pclose... no
checking for poll... yes
checking for popen... yes
checking for _popen... no
checking for posix_fadvise... yes
checking for posix_fallocate... yes
checking for posix_madvise... yes
checking for posix_memalign... yes
checking for posix_spawnp... yes
checking for pow... yes
checking for pread... yes
checking for pwrite... yes
checking for qsort_r... yes
checking for raise... yes
checking for rand_r... yes
checking for readlink... yes
checking for realpath... yes
checking for select... yes
checking for seekdir... yes
checking for sendfile... yes
checking for setlocale... yes
checking for socket... yes
checking for sqrt... yes
checking for setvbuf... yes
checking for stat... yes
checking for strcasestr... yes
checking for strchr... yes
checking for strrchr... yes
checking for strcspn... yes
checking for strdup... yes
checking for strpbrk... yes
checking for strspn... yes
checking for strstr... yes
checking for strtod... (cached) yes
checking for strtod_l... yes
checking for strtol... yes
checking for strtoul... yes
checking for symlink... yes
checking for sysconf... yes
checking for sigemptyset... yes
checking for sigaction... yes
checking for spawnvp... no
checking for strerror... yes
checking for strlcat... no
checking for strlcpy... no
checking for strcasecmp... yes
checking for strncasecmp... yes
checking for system... yes
checking for telldir... yes
checking for tempnam... yes
checking for times... yes
checking for ulltostr... no
checking for uselocale... yes
checking for usleep... yes
checking for utime... yes
checking for vfprintf... yes
checking for vfprintf_l... no
checking for vsprintf... yes
checking for vsnprintf... yes
checking for vsnprintf_l... no
checking for waitpid... yes
checking for _wfopen... no
checking for _wstat... no
-------------------------------------------------------------
checking for ImageMagick delegate programs...
checking for bpgdec... bpgdec
checking for bpgenc... bpgenc
checking for blender... /usr/bin/blender
checking for xdg-open... /usr/bin/xdg-open
checking for ufraw-batch... ufraw-batch
checking for libreoffice... /usr/bin/libreoffice
checking for dvips... dvips
checking for convert... /usr/bin/convert
checking for display... /usr/bin/display
checking for xterm... xterm
checking for dot... /usr/bin/dot
checking for hp2xx... hp2xx
checking for html2ps... html2ps
checking for ilbmtoppm... /usr/bin/ilbmtoppm
checking for ppmtoilbm... /usr/bin/ppmtoilbm
checking for JxrDecApp... JxrDecApp
checking for JxrEncApp... JxrEncApp
checking for lepton... lepton
checking for lp... /usr/bin/lp
checking for lpr... /usr/bin/lpr
checking for gimp... /usr/bin/gimp
checking for mogrify... /usr/bin/mogrify
checking for ffmpeg... /usr/bin/ffmpeg
checking for ffmpeg... /usr/bin/ffmpeg
checking for mrsidgeodecode... mrsidgeodecode
checking for mv... /usr/bin/mv
checking for pcl6... /usr/bin/gpcl6
checking for gsx... /usr/bin/gs
checking for rm... /usr/bin/rm
checking for rsvg-convert... /usr/bin/rsvg-convert
checking for inkscape... /usr/bin/inkscape
checking for tesseract... tesseract
checking for potrace... /usr/bin/potrace
checking for dwebp... /usr/bin/dwebp
checking for cwebp... /usr/bin/cwebp
checking for curl... /usr/bin/curl
checking for gxps... /usr/bin/gxps
checking for Apple fonts directory... not found!
checking for Dejavu fonts directory... /usr/share/fonts/TTF/
checking for Ghostscript fonts directory... /usr/share/fonts/gsfonts/
checking for URW-base35 fonts directory... not found!
checking for Windows fonts directory... not found!
checking for gnutar... no
checking for gtar... no
checking for tar... tar
checking for perl... perl
checking for rpmbuild... no
checking for rpm... no
checking for 7za... 7za
checking for zip... zip
-------------------------------------------------------------
checking for PCL...
checking for pcl color device... ppmraw
checking for pcl CMYK device... ppmraw
checking for pcl mono device... ppmraw
-------------------------------------------------------------
checking for XPS...
checking for xps color device... ppmraw
checking for xps CMYK device... bmpsep8
checking for xps mono device... pbmraw
-------------------------------------------------------------
checking for Ghostscript...
checking for Ghostscript version... 9.56.1
checking for gs color device... png16m
checking for gs alpha device... pngalpha
checking for gs CMYK device... pamcmyk32
checking for gs mono device... pbmraw
checking for gs PDF writing device... pdfwrite
checking for gs PS writing device... ps2write
checking for gs EPS writing device... eps2write
-------------------------------------------------------------
checking for Perl...
checking for perl... /usr/bin/perl
checking for perl version... 5.36.0
-------------------------------------------------------------
Update ImageMagick configuration
checking that generated files are newer than configure... done
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating common.shi
config.status: creating config/configure.xml
config.status: creating config/delegates.xml
config.status: creating config/ImageMagick.rdf
config.status: creating config/MagickCore.dox
config.status: creating config/MagickWand.dox
config.status: creating config/Magick++.dox
config.status: creating config/type-apple.xml
config.status: creating config/type-dejavu.xml
config.status: creating config/type-ghostscript.xml
config.status: creating config/type-urw-base35.xml
config.status: creating config/type-windows.xml
config.status: creating config/type.xml
config.status: creating ImageMagick.spec
config.status: creating Magick++/bin/Magick++-config
config.status: creating magick/ImageMagick.pc
config.status: creating Magick++/lib/ImageMagick++.pc
config.status: creating Magick++/lib/Magick++.pc
config.status: creating magick/Magick-config
config.status: creating magick/MagickCore-config
config.status: creating magick/MagickCore.pc
config.status: creating magick/version.h
config.status: creating Makefile
config.status: creating magick.sh
config.status: creating PerlMagick/check.sh
config.status: creating PerlMagick/default/Magick.pm
config.status: creating PerlMagick/Makefile.PL
config.status: creating PerlMagick/default/Makefile.PL
config.status: creating PerlMagick/quantum/Makefile.PL
config.status: creating PerlMagick/quantum/quantum.pm
config.status: creating PerlMagick/quantum/quantum.xs
config.status: creating PerlMagick/quantum/typemap
config.status: creating utilities/animate.1
config.status: creating utilities/compare.1
config.status: creating utilities/composite.1
config.status: creating utilities/conjure.1
config.status: creating utilities/convert.1
config.status: creating utilities/display.1
config.status: creating utilities/identify.1
config.status: creating utilities/ImageMagick.1
config.status: creating utilities/import.1
config.status: creating utilities/mogrify.1
config.status: creating utilities/montage.1
config.status: creating utilities/stream.1
config.status: creating wand/MagickWand-config
config.status: creating wand/MagickWand.pc
config.status: creating wand/Wand-config
config.status: creating wand/Wand.pc
config.status: creating config/config.h
config.status: config/config.h is unchanged
config.status: executing magick/magick-baseconfig.h commands
config.status: creating magick/magick-baseconfig.h - prefix MAGICKCORE for config/config.h defines
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default commands
config.status: executing magick.sh.in commands
config.status: executing MagickCore-config.in commands
config.status: executing Magick-config.in commands
config.status: executing MagickWand-config.in commands
config.status: executing Wand-config.in commands
config.status: executing Magick++-config.in commands
config.status: executing PerlMagick/check.sh.in commands
configure:
==============================================================================
ImageMagick 6.9.12-58 is configured as follows. Please verify that this
configuration matches your expectations.
Host system type: x86_64-pc-linux-gnu
Build system type: x86_64-pc-linux-gnu
Option Value
------------------------------------------------------------------------------
Shared libraries --enable-shared=yes yes
Static libraries --enable-static=no no
Module support --with-modules=yes yes
GNU ld --with-gnu-ld=yes yes
Quantum depth --with-quantum-depth=16 16
High Dynamic Range Imagery
--enable-hdri=yes yes
Install documentation: no
Memory allocation library:
JEMalloc --with-jemalloc=no no
TCMalloc --with-tcmalloc=no no
UMem --with-umem=no no
Delegate library configuration:
BZLIB --with-bzlib=yes yes
Autotrace --with-autotrace=no no
DJVU --with-djvu=yes yes
DPS --with-dps=no no
FFTW --with-fftw=no no
FLIF --with-flif=yes no
FlashPIX --with-fpx=no no
FontConfig --with-fontconfig=yes yes
FreeType --with-freetype=yes yes
Ghostscript lib --with-gslib=no no
Graphviz --with-gvc=no
HEIC --with-heic=yes yes
JBIG --with-jbig=yes yes
JPEG v1 --with-jpeg=yes yes
JPEG XL --with-jxl=yes no
LCMS --with-lcms=yes yes
LQR --with-lqr=yes yes
LTDL --with-ltdl=yes yes
LZMA --with-lzma=yes yes
Magick++ --with-magick-plus-plus=yes yes
OpenEXR --with-openexr=yes yes
OpenJP2 --with-openjp2=yes yes
PANGO --with-pango=yes yes
PERL --with-perl=yes /usr/bin/perl
PNG --with-png=yes yes
RAQM --with-raqm=yes yes
RAW --with-raw=yes yes
RSVG --with-rsvg=yes yes
TIFF --with-tiff=yes yes
WEBP --with-webp=yes yes
WMF --with-wmf=yes yes
X11 --with-x= yes
XML --with-xml=yes yes
ZLIB --with-zlib=yes yes
ZSTD --with-zstd=yes yes
Delegate program configuration:
GhostPCL None pcl6 (unknown)
GhostXPS None gxps (unknown)
Ghostscript None gs (9.56.1)
Font configuration:
Apple fonts --with-apple-font-dir=default
Dejavu fonts --with-dejavu-font-dir=/usr/share/fonts/TTF /usr/share/fonts/TTF/
Ghostscript fonts --with-gs-font-dir=/usr/share/fonts/gsfonts /usr/share/fonts/gsfonts/
URW-base35 fonts --with-urw-base35-font-dir=default none
Windows fonts --with-windows-font-dir=default none
X11 configuration:
X_CFLAGS =
X_PRE_LIBS = -lSM -lICE
X_LIBS =
X_EXTRA_LIBS =
Options used to compile and link:
PREFIX = /usr
EXEC-PREFIX = /usr
VERSION = 6.9.12-58
CC = gcc
CFLAGS = -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/lzo -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/harfbuzz -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-4 -pthread -I/usr/include/pixman-1 -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/cairo -I/usr/include/lzo -I/usr/include/freetype2 -I/usr/include/harfbuzz -pthread -I/usr/include/pixman-1 -I/usr/include/libraw -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/lzo -I/usr/include/pixman-1 -pthread -I/usr/include/OpenEXR -pthread -I/usr/include/Imath -I/usr/include/lqr-1 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-4 -pthread -I/usr/include/openjpeg-2.5 -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/harfbuzz -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-4 -pthread -I/usr/include/fribidi -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/harfbuzz -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-4 -pthread -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/harfbuzz -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-4 -pthread -pthread -fopenmp -Wall -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -fexceptions -pthread -DMAGICKCORE_HDRI_ENABLE=1 -DMAGICKCORE_QUANTUM_DEPTH=16
CPPFLAGS = -D_FORTIFY_SOURCE=2 -DMAGICKCORE_HDRI_ENABLE=1 -DMAGICKCORE_QUANTUM_DEPTH=16
PCFLAGS =
DEFS = -DHAVE_CONFIG_H
LDFLAGS = -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now
LIBS = -llcms2 -lfreetype -lraqm -llqr-1 -lglib-2.0 -lxml2 -lfontconfig -lfreetype -lXext -lSM -lICE -lX11 -lXt -lbz2 -lz -lltdl -lm -lpthread
CXX = g++
CXXFLAGS = -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -pthread
FEATURES = DPC HDRI Cipher OpenCL OpenMP Modules
DELEGATES = bzlib djvu fontconfig freetype heic jbig jng jpeg lcms lqr lzma openexr openjp2 pango png ps raqm raw rsvg tiff video webp wmf x xml zlib zstd
==============================================================================
make all-am
make[1]: Entering directory '/home/xxxxme/Downloads/imagemagick6/src/ImageMagick-6.9.12-58'
CC utilities/animate.o
CC magick/libMagickCore_6_Q16HDRI_la-accelerate.lo
CC magick/libMagickCore_6_Q16HDRI_la-animate.lo
CC magick/libMagickCore_6_Q16HDRI_la-annotate.lo
CC magick/libMagickCore_6_Q16HDRI_la-artifact.lo
CC magick/libMagickCore_6_Q16HDRI_la-attribute.lo
CC magick/libMagickCore_6_Q16HDRI_la-blob.lo
CC magick/libMagickCore_6_Q16HDRI_la-cache.lo
In file included from /usr/include/CL/cl.h:20,
from ./wand/studio.h:137,
from utilities/animate.c:53:
/usr/include/CL/cl_version.h:22:9: note: ‘#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)’
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/accelerate.c:44:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/attribute.c:43:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/cache.c:43:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/animate.c:42:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/annotate.c:45:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
CC magick/libMagickCore_6_Q16HDRI_la-cache-view.lo
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/artifact.c:43:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/blob.c:47:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
magick/cache.c: In function 'RelinquishOpenCLBuffer':
magick/cache.c:233:5: warning: unused variable 'clEnv' [-Wunused-variable]
233 | clEnv;
| ^~~~~
magick/accelerate.c: In function 'ComputeAddNoiseImage':
magick/accelerate.c:293:5: warning: variable 'local_work_size' set but not used [-Wunused-but-set-variable]
293 | local_work_size[1];
| ^~~~~~~~~~~~~~~
magick/accelerate.c:248:5: warning: variable 'context' set but not used [-Wunused-but-set-variable]
248 | context;
| ^~~~~~~
magick/accelerate.c: In function 'ComputeCompositeImage':
magick/accelerate.c:883:5: warning: variable 'context' set but not used [-Wunused-but-set-variable]
883 | context;
| ^~~~~~~
magick/accelerate.c: In function 'ComputeContrastImage':
magick/accelerate.c:1009:5: warning: variable 'context' set but not used [-Wunused-but-set-variable]
1009 | context;
| ^~~~~~~
magick/accelerate.c: In function 'ComputeDespeckleImage':
magick/accelerate.c:2018:5: warning: variable 'context' set but not used [-Wunused-but-set-variable]
2018 | context;
| ^~~~~~~
magick/accelerate.c: In function 'ComputeGrayscaleImage':
magick/accelerate.c:2831:5: warning: variable 'context' set but not used [-Wunused-but-set-variable]
2831 | context;
| ^~~~~~~
magick/cache.c: In function 'CopyOpenCLBuffer':
magick/cache.c:5455:9: warning: variable 'context' set but not used [-Wunused-but-set-variable]
5455 | context;
| ^~~~~~~
magick/accelerate.c: In function 'ComputeModulateImage':
magick/accelerate.c:3255:5: warning: variable 'context' set but not used [-Wunused-but-set-variable]
3255 | context;
| ^~~~~~~
magick/accelerate.c: In function 'ComputeWaveletDenoiseImage':
magick/accelerate.c:5084:5: warning: variable 'context' set but not used [-Wunused-but-set-variable]
5084 | context;
| ^~~~~~~
magick/accelerate.c: At top level:
magick/accelerate.c:240:15: warning: 'ComputeAddNoiseImage' defined but not used [-Wunused-function]
240 | static Image *ComputeAddNoiseImage(const Image *image,
| ^~~~~~~~~~~~~~~~~~~~
CC magick/libMagickCore_6_Q16HDRI_la-channel.lo
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/cache-view.c:49:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/channel.c:43:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
CC magick/libMagickCore_6_Q16HDRI_la-cipher.lo
CC magick/libMagickCore_6_Q16HDRI_la-client.lo
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/cipher.c:41:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
CC magick/libMagickCore_6_Q16HDRI_la-coder.lo
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/client.c:42:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
CC magick/libMagickCore_6_Q16HDRI_la-color.lo
CC magick/libMagickCore_6_Q16HDRI_la-colormap.lo
CC magick/libMagickCore_6_Q16HDRI_la-colorspace.lo
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/colormap.c:44:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
CC magick/libMagickCore_6_Q16HDRI_la-compare.lo
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/coder.c:42:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
CC magick/libMagickCore_6_Q16HDRI_la-composite.lo
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/color.c:43:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/colorspace.c:42:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
CC magick/libMagickCore_6_Q16HDRI_la-compress.lo
CC magick/libMagickCore_6_Q16HDRI_la-configure.lo
CC magick/libMagickCore_6_Q16HDRI_la-constitute.lo
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/compare.c:43:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
CC magick/libMagickCore_6_Q16HDRI_la-decorate.lo
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/composite.c:43:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/compress.c:43:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/configure.c:42:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/constitute.c:42:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/decorate.c:43:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
CC magick/libMagickCore_6_Q16HDRI_la-distribute-cache.lo
CC magick/libMagickCore_6_Q16HDRI_la-delegate.lo
CC magick/libMagickCore_6_Q16HDRI_la-deprecate.lo
CC magick/libMagickCore_6_Q16HDRI_la-display.lo
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/distribute-cache.c:54:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/delegate.c:48:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/display.c:42:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
In file included from /usr/include/CL/cl.h:20,
from ./magick/studio.h:147,
from magick/deprecate.c:43:
/usr/include/CL/cl_version.h:22:9: note: '#pragma message: cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)'
22 | #pragma message("cl_version.h: CL_TARGET_OPENCL_VERSION is not defined. Defaulting to 300 (OpenCL 3.0)")
| ^~~~~~~
CC magick/libMagickCore_6_Q16HDRI_la-distort.lo
CC magick/libMagickCore_6_Q16HDRI_la-draw.lo
CC magick/libMagickCore_6_Q16HDRI_la-effect.lo
CC magick/libMagickCore_6_Q16HDRI_la-enhance.lo