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
|
/* config/config.h.in. Generated from configure.ac by autoheader. */
/* Define if building universal (internal helper macro) */
#undef AC_APPLE_UNIVERSAL_BUILD
/* Define if you have AUTOTRACE library */
#undef AUTOTRACE_DELEGATE
/* Define if coders and filters are to be built as modules. */
#undef BUILD_MODULES
/* Define if you have the bzip2 library */
#undef BZLIB_DELEGATE
/* Define if you have CAIRO library */
#undef CAIRO_DELEGATE
/* Channel mask depth */
#undef CHANNEL_MASK_DEPTH
/* permit enciphering and deciphering image pixels */
#undef CIPHER_SUPPORT
/* coders subdirectory. */
#undef CODER_DIRNAME
/* Directory where architecture-dependent configuration files live. */
#undef CONFIGURE_PATH
/* Subdirectory of lib where architecture-dependent configuration files live.
*/
#undef CONFIGURE_RELATIVE_PATH
/* Define if you have DJVU library */
#undef DJVU_DELEGATE
/* Define if you have DMR library */
#undef DMR_DELEGATE
/* Directory where ImageMagick documents live. */
#undef DOCUMENTATION_PATH
/* Define to 1 to enable distributed pixel cache support. */
#undef DPC_SUPPORT
/* Define if you have Display Postscript */
#undef DPS_DELEGATE
/* exclude deprecated methods in MagickCore API */
#undef EXCLUDE_DEPRECATED
/* Directory where executables are installed. */
#undef EXECUTABLE_PATH
/* Define if you have FFTW library */
#undef FFTW_DELEGATE
/* filter subdirectory. */
#undef FILTER_DIRNAME
/* Define if you have FLIF library */
#undef FLIF_DELEGATE
/* Define if you have FONTCONFIG library */
#undef FONTCONFIG_DELEGATE
/* Define if you have FlashPIX library */
#undef FPX_DELEGATE
/* Define if you have FREETYPE library */
#undef FREETYPE_DELEGATE
/* Define if you have Ghostscript library or framework */
#undef GS_DELEGATE
/* Define if you have GVC library */
#undef GVC_DELEGATE
/* Define to 1 if you have the 'acosh' function. */
#undef HAVE_ACOSH
/* Define to 1 if you have the 'aligned_malloc' function. */
#undef HAVE_ALIGNED_MALLOC
/* Define to 1 if you have the <arm/limits.h> header file. */
#undef HAVE_ARM_LIMITS_H
/* Define to 1 if you have the <arpa/inet.h> header file. */
#undef HAVE_ARPA_INET_H
/* Define to 1 if you have the 'asinh' function. */
#undef HAVE_ASINH
/* Define to 1 if you have the 'atanh' function. */
#undef HAVE_ATANH
/* Define to 1 if you have the 'atexit' function. */
#undef HAVE_ATEXIT
/* Define to 1 if you have the 'atoll' function. */
#undef HAVE_ATOLL
/* define if bool is a built-in type */
#undef HAVE_BOOL
/* Define to 1 if you have the 'cabs' function. */
#undef HAVE_CABS
/* Define to 1 if you have the 'carg' function. */
#undef HAVE_CARG
/* Define to 1 if you have the 'cimag' function. */
#undef HAVE_CIMAG
/* Define to 1 if you have the 'clock' function. */
#undef HAVE_CLOCK
/* Define to 1 if you have the 'clock_getres' function. */
#undef HAVE_CLOCK_GETRES
/* Define to 1 if you have the 'clock_gettime' function. */
#undef HAVE_CLOCK_GETTIME
/* Define to 1 if clock_gettime supports CLOCK_REALTIME. */
#undef HAVE_CLOCK_REALTIME
/* Define to 1 if you have the <CL/cl.h> header file. */
#undef HAVE_CL_CL_H
/* Define to 1 if you have the <complex.h> header file. */
#undef HAVE_COMPLEX_H
/* Define to 1 if you have the 'creal' function. */
#undef HAVE_CREAL
/* Define to 1 if you have the 'ctime_r' function. */
#undef HAVE_CTIME_R
/* Define to 1 if you have the declaration of 'pread', and to 0 if you don't.
*/
#undef HAVE_DECL_PREAD
/* Define to 1 if you have the declaration of 'pwrite', and to 0 if you don't.
*/
#undef HAVE_DECL_PWRITE
/* Define to 1 if you have the declaration of 'strerror_r', and to 0 if you
don't. */
#undef HAVE_DECL_STRERROR_R
/* Define to 1 if you have the declaration of 'strlcpy', and to 0 if you
don't. */
#undef HAVE_DECL_STRLCPY
/* Define to 1 if you have the declaration of 'tzname', and to 0 if you don't.
*/
#undef HAVE_DECL_TZNAME
/* Define to 1 if you have the declaration of 'vsnprintf', and to 0 if you
don't. */
#undef HAVE_DECL_VSNPRINTF
/* Define to 1 if you have the 'directio' function. */
#undef HAVE_DIRECTIO
/* Define to 1 if you have the <dirent.h> header file, and it defines 'DIR'.
*/
#undef HAVE_DIRENT_H
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
/* Define to 1 if you have the 'erf' function. */
#undef HAVE_ERF
/* Define to 1 if you have the <errno.h> header file. */
#undef HAVE_ERRNO_H
/* Define to 1 if you have the 'execvp' function. */
#undef HAVE_EXECVP
/* Define to 1 if you have the 'fchmod' function. */
#undef HAVE_FCHMOD
/* Define to 1 if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
/* Define to 1 if you have the <float.h> header file. */
#undef HAVE_FLOAT_H
/* Define to 1 if you have the 'floor' function. */
#undef HAVE_FLOOR
/* Define to 1 if you have the 'fork' function. */
#undef HAVE_FORK
/* Define to 1 if fseeko (and ftello) are declared in stdio.h. */
#undef HAVE_FSEEKO
/* Define to 1 if you have the 'ftime' function. */
#undef HAVE_FTIME
/* Define to 1 if you have the 'ftruncate' function. */
#undef HAVE_FTRUNCATE
/* Define to 1 if you have the 'getcwd' function. */
#undef HAVE_GETCWD
/* Define to 1 if you have the 'getc_unlocked' function. */
#undef HAVE_GETC_UNLOCKED
/* Define to 1 if you have the 'getdtablesize' function. */
#undef HAVE_GETDTABLESIZE
/* Define to 1 if you have the 'getentropy' function. */
#undef HAVE_GETENTROPY
/* Define to 1 if you have the 'getexecname' function. */
#undef HAVE_GETEXECNAME
/* Define to 1 if you have the 'getpagesize' function. */
#undef HAVE_GETPAGESIZE
/* Define to 1 if you have the 'getpid' function. */
#undef HAVE_GETPID
/* Define to 1 if you have the 'getpwnam_r' function. */
#undef HAVE_GETPWNAM_R
/* Define to 1 if you have the 'getrlimit' function. */
#undef HAVE_GETRLIMIT
/* Define to 1 if you have the 'getrusage' function. */
#undef HAVE_GETRUSAGE
/* Define to 1 if you have the 'gettimeofday' function. */
#undef HAVE_GETTIMEOFDAY
/* Define to 1 if you have the 'gmtime_r' function. */
#undef HAVE_GMTIME_R
/* [Compile with hugepage support] */
#undef HAVE_HUGEPAGES
/* Define to 1 if the system has the type 'intmax_t'. */
#undef HAVE_INTMAX_T
/* Define to 1 if the system has the type 'intptr_t'. */
#undef HAVE_INTPTR_T
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Define to 1 if you have the 'isnan' function. */
#undef HAVE_ISNAN
/* Define to 1 if you have the 'j0' function. */
#undef HAVE_J0
/* Define to 1 if you have the 'j1' function. */
#undef HAVE_J1
/* Define if you have jemalloc memory allocation library */
#undef HAVE_JEMALLOC
/* Define to 1 if you have the 'jpeg12_read_scanlines' function. */
#undef HAVE_JPEG12_READ_SCANLINES
/* Define to 1 if you have the 'jpeg12_write_scanlines' function. */
#undef HAVE_JPEG12_WRITE_SCANLINES
/* Define to 1 if you have the 'jpeg16_read_scanlines' function. */
#undef HAVE_JPEG16_READ_SCANLINES
/* Define to 1 if you have the 'jpeg16_write_scanlines' function. */
#undef HAVE_JPEG16_WRITE_SCANLINES
/* Define to 1 if you have the 'jpeg_enable_lossless' function. */
#undef HAVE_JPEG_ENABLE_LOSSLESS
/* Define to 1 if you have the 'jpeg_simple_lossless' function. */
#undef HAVE_JPEG_SIMPLE_LOSSLESS
/* Define if you have the <lcms2.h> header file. */
#undef HAVE_LCMS2_H
/* Define if you have the <lcms2/lcms2.h> header file. */
#undef HAVE_LCMS2_LCMS2_H
/* Define to 1 if you have the 'gcov' library (-lgcov). */
#undef HAVE_LIBGCOV
/* Define to 1 if you have the <limits.h> header file. */
#undef HAVE_LIMITS_H
/* Define if you have Linux-compatible sendfile() */
#undef HAVE_LINUX_SENDFILE
/* Define to 1 if you have the <linux/unistd.h> header file. */
#undef HAVE_LINUX_UNISTD_H
/* Define to 1 if you have the 'lltostr' function. */
#undef HAVE_LLTOSTR
/* Define to 1 if you have the <locale.h> header file. */
#undef HAVE_LOCALE_H
/* Define to 1 if you have the 'localtime_r' function. */
#undef HAVE_LOCALTIME_R
/* Define to 1 if the system has the type 'long long int'. */
#undef HAVE_LONG_LONG_INT
/* Define to 1 if you have the 'lstat' function. */
#undef HAVE_LSTAT
/* Define to 1 if you have the <machine/param.h> header file. */
#undef HAVE_MACHINE_PARAM_H
/* Define to 1 if you have the <mach-o/dyld.h> header file. */
#undef HAVE_MACH_O_DYLD_H
/* Define to 1 if you have the <malloc.h> header file. */
#undef HAVE_MALLOC_H
/* Define to 1 if <wchar.h> declares mbstate_t. */
#undef HAVE_MBSTATE_T
/* Define to 1 if you have the 'memmove' function. */
#undef HAVE_MEMMOVE
/* Define to 1 if you have the 'memset' function. */
#undef HAVE_MEMSET
/* Define to 1 if you have the <minix/config.h> header file. */
#undef HAVE_MINIX_CONFIG_H
/* Define to 1 if you have the 'mkdir' function. */
#undef HAVE_MKDIR
/* Define to 1 if you have the 'mkstemp' function. */
#undef HAVE_MKSTEMP
/* Define to 1 if you have the 'mmap' function. */
#undef HAVE_MMAP
/* Define if you have the mtmalloc memory allocation library */
#undef HAVE_MTMALLOC
/* Define to 1 if you have the 'munmap' function. */
#undef HAVE_MUNMAP
/* define if the compiler implements namespaces */
#undef HAVE_NAMESPACES
/* Define if g++ supports namespace std. */
#undef HAVE_NAMESPACE_STD
/* Define to 1 if you have the 'nanosleep' function. */
#undef HAVE_NANOSLEEP
/* Define to 1 if you have the <ndir.h> header file, and it defines 'DIR'. */
#undef HAVE_NDIR_H
/* Define to 1 if you have the <netdb.h> header file. */
#undef HAVE_NETDB_H
/* Define to 1 if you have the <netinet/in.h> header file. */
#undef HAVE_NETINET_IN_H
/* Define to 1 if you have the 'newlocale' function. */
#undef HAVE_NEWLOCALE
/* Define to 1 if you have the <OpenCL/cl.h> header file. */
#undef HAVE_OPENCL_CL_H
/* Define to 1 if you have the <OS.h> header file. */
#undef HAVE_OS_H
/* Define to 1 if you have the 'pclose' function. */
#undef HAVE_PCLOSE
/* Define to 1 if you have the 'poll' function. */
#undef HAVE_POLL
/* Define to 1 if you have the 'popen' function. */
#undef HAVE_POPEN
/* Define to 1 if you have the 'posix_fadvise' function. */
#undef HAVE_POSIX_FADVISE
/* Define to 1 if you have the 'posix_fallocate' function. */
#undef HAVE_POSIX_FALLOCATE
/* Define to 1 if you have the 'posix_madvise' function. */
#undef HAVE_POSIX_MADVISE
/* Define to 1 if you have the 'posix_memalign' function. */
#undef HAVE_POSIX_MEMALIGN
/* Define to 1 if you have the 'posix_spawnp' function. */
#undef HAVE_POSIX_SPAWNP
/* Define to 1 if you have the 'pow' function. */
#undef HAVE_POW
/* Define to 1 if you have the 'pread' function. */
#undef HAVE_PREAD
/* Define to 1 if you have the <process.h> header file. */
#undef HAVE_PROCESS_H
/* Define if you have POSIX threads libraries and header files. */
#undef HAVE_PTHREAD
/* Have PTHREAD_PRIO_INHERIT. */
#undef HAVE_PTHREAD_PRIO_INHERIT
/* Define to 1 if you have the 'putenv' function. */
#undef HAVE_PUTENV
/* Define to 1 if you have the 'pwrite' function. */
#undef HAVE_PWRITE
/* Define to 1 if you have the 'qsort_r' function. */
#undef HAVE_QSORT_R
/* Define to 1 if you have the 'raise' function. */
#undef HAVE_RAISE
/* Define to 1 if you have the 'rand_r' function. */
#undef HAVE_RAND_R
/* Define to 1 if you have the 'readlink' function. */
#undef HAVE_READLINK
/* Define to 1 if you have the 'realpath' function. */
#undef HAVE_REALPATH
/* Define to 1 if you have the 'seekdir' function. */
#undef HAVE_SEEKDIR
/* Define to 1 if you have the 'select' function. */
#undef HAVE_SELECT
/* Define to 1 if you have the 'sendfile' function. */
#undef HAVE_SENDFILE
/* Define to 1 if you have the 'setlocale' function. */
#undef HAVE_SETLOCALE
/* Define to 1 if you have the 'setvbuf' function. */
#undef HAVE_SETVBUF
/* X11 server supports shape extension */
#undef HAVE_SHAPE
/* X11 server supports shared memory extension */
#undef HAVE_SHARED_MEMORY
/* Define to 1 if you have the 'sigaction' function. */
#undef HAVE_SIGACTION
/* Define to 1 if you have the 'sigemptyset' function. */
#undef HAVE_SIGEMPTYSET
/* Define to 1 if you have the 'socket' function. */
#undef HAVE_SOCKET
/* Define to 1 if you have the 'spawnvp' function. */
#undef HAVE_SPAWNVP
/* Define to 1 if you have the 'sqrt' function. */
#undef HAVE_SQRT
/* Define to 1 if you have the 'stat' function. */
#undef HAVE_STAT
/* Define to 1 if you have the <stdarg.h> header file. */
#undef HAVE_STDARG_H
/* Define to 1 if stdbool.h conforms to C99. */
#undef HAVE_STDBOOL_H
/* Define to 1 if you have the <stddef.h> header file. */
#undef HAVE_STDDEF_H
/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H
/* Define to 1 if you have the <stdio.h> header file. */
#undef HAVE_STDIO_H
/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H
/* Define to 1 if you have the 'strcasecmp' function. */
#undef HAVE_STRCASECMP
/* Define to 1 if you have the 'strcasestr' function. */
#undef HAVE_STRCASESTR
/* Define to 1 if you have the 'strchr' function. */
#undef HAVE_STRCHR
/* Define to 1 if you have the 'strcspn' function. */
#undef HAVE_STRCSPN
/* Define to 1 if you have the 'strdup' function. */
#undef HAVE_STRDUP
/* Define to 1 if you have the 'strerror' function. */
#undef HAVE_STRERROR
/* Define if you have 'strerror_r'. */
#undef HAVE_STRERROR_R
/* Define to 1 if cpp supports the ANSI # stringizing operator. */
#undef HAVE_STRINGIZE
/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H
/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H
/* Define to 1 if you have the 'strlcat' function. */
#undef HAVE_STRLCAT
/* Define to 1 if you have the 'strlcpy' function. */
#undef HAVE_STRLCPY
/* Define to 1 if you have the 'strncasecmp' function. */
#undef HAVE_STRNCASECMP
/* Define to 1 if you have the 'strpbrk' function. */
#undef HAVE_STRPBRK
/* Define to 1 if you have the 'strrchr' function. */
#undef HAVE_STRRCHR
/* Define to 1 if you have the 'strspn' function. */
#undef HAVE_STRSPN
/* Define to 1 if you have the 'strstr' function. */
#undef HAVE_STRSTR
/* Define to 1 if you have the 'strtod' function. */
#undef HAVE_STRTOD
/* Define to 1 if you have the 'strtod_l' function. */
#undef HAVE_STRTOD_L
/* Define to 1 if you have the 'strtol' function. */
#undef HAVE_STRTOL
/* Define to 1 if you have the 'strtoul' function. */
#undef HAVE_STRTOUL
/* Define to 1 if 'tm_zone' is a member of 'struct tm'. */
#undef HAVE_STRUCT_TM_TM_ZONE
/* Define to 1 if you have the <sun_prefetch.h> header file. */
#undef HAVE_SUN_PREFETCH_H
/* Define to 1 if you have the 'symlink' function. */
#undef HAVE_SYMLINK
/* Define to 1 if you have the 'sysconf' function. */
#undef HAVE_SYSCONF
/* Define to 1 if you have the 'system' function. */
#undef HAVE_SYSTEM
/* Define to 1 if you have the <sys/dir.h> header file, and it defines 'DIR'.
*/
#undef HAVE_SYS_DIR_H
/* Define to 1 if you have the <sys/ipc.h> header file. */
#undef HAVE_SYS_IPC_H
/* Define to 1 if you have the <sys/mman.h> header file. */
#undef HAVE_SYS_MMAN_H
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines 'DIR'.
*/
#undef HAVE_SYS_NDIR_H
/* Define to 1 if you have the <sys/param.h> header file. */
#undef HAVE_SYS_PARAM_H
/* Define to 1 if you have the <sys/resource.h> header file. */
#undef HAVE_SYS_RESOURCE_H
/* Define to 1 if you have the <sys/sendfile.h> header file. */
#undef HAVE_SYS_SENDFILE_H
/* Define to 1 if you have the <sys/socket.h> header file. */
#undef HAVE_SYS_SOCKET_H
/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H
/* Define to 1 if you have the <sys/syslimits.h> header file. */
#undef HAVE_SYS_SYSLIMITS_H
/* Define to 1 if you have the <sys/times.h> header file. */
#undef HAVE_SYS_TIMES_H
/* Define to 1 if you have the <sys/time.h> header file. */
#undef HAVE_SYS_TIME_H
/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H
/* Define to 1 if you have the <sys/uio.h> header file. */
#undef HAVE_SYS_UIO_H
/* Define to 1 if you have the <sys/wait.h> header file. */
#undef HAVE_SYS_WAIT_H
/* Define if you have the tcmalloc memory allocation library */
#undef HAVE_TCMALLOC
/* Define to 1 if you have the 'telldir' function. */
#undef HAVE_TELLDIR
/* Define to 1 if you have the 'tempnam' function. */
#undef HAVE_TEMPNAM
/* Define to 1 if you have the 'times' function. */
#undef HAVE_TIMES
/* Define to 1 if your 'struct tm' has 'tm_zone'. Deprecated, use
'HAVE_STRUCT_TM_TM_ZONE' instead. */
#undef HAVE_TM_ZONE
/* Define to 1 if you don't have 'tm_zone' but do have the external array
'tzname'. */
#undef HAVE_TZNAME
/* Define to 1 if the system has the type 'uintmax_t'. */
#undef HAVE_UINTMAX_T
/* Define to 1 if the system has the type 'uintptr_t'. */
#undef HAVE_UINTPTR_T
/* Define to 1 if you have the 'ulltostr' function. */
#undef HAVE_ULLTOSTR
/* Define if you have umem memory allocation library */
#undef HAVE_UMEM
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Define to 1 if the system has the type 'unsigned long long int'. */
#undef HAVE_UNSIGNED_LONG_LONG_INT
/* Define to 1 if you have the 'uselocale' function. */
#undef HAVE_USELOCALE
/* Define to 1 if you have the 'usleep' function. */
#undef HAVE_USLEEP
/* Define to 1 if you have the 'utime' function. */
#undef HAVE_UTIME
/* Define to 1 if you have the 'utimensat' function. */
#undef HAVE_UTIMENSAT
/* Define to 1 if you have the <utime.h> header file. */
#undef HAVE_UTIME_H
/* Define to 1 if you have the 'vfprintf' function. */
#undef HAVE_VFPRINTF
/* Define to 1 if you have the 'vfprintf_l' function. */
#undef HAVE_VFPRINTF_L
/* Define to 1 if you have the 'vsnprintf' function. */
#undef HAVE_VSNPRINTF
/* Define to 1 if you have the 'vsnprintf_l' function. */
#undef HAVE_VSNPRINTF_L
/* Define to 1 if you have the 'vsprintf' function. */
#undef HAVE_VSPRINTF
/* Define to 1 if you have the 'waitpid' function. */
#undef HAVE_WAITPID
/* Define to 1 if you have the <wchar.h> header file. */
#undef HAVE_WCHAR_H
/* Define to 1 if you have the <xlocale.h> header file. */
#undef HAVE_XLOCALE_H
/* Define to 1 if you have the '_aligned_malloc' function. */
#undef HAVE__ALIGNED_MALLOC
/* Define to 1 if the system has the type '_Bool'. */
#undef HAVE__BOOL
/* Define to 1 if you have the '_exit' function. */
#undef HAVE__EXIT
/* Define to 1 if you have the '_NSGetExecutablePath' function. */
#undef HAVE__NSGETEXECUTABLEPATH
/* Define to 1 if you have the '_pclose' function. */
#undef HAVE__PCLOSE
/* Define to 1 if you have the '_popen' function. */
#undef HAVE__POPEN
/* Define to 1 if you have the '_wfopen' function. */
#undef HAVE__WFOPEN
/* Define to 1 if you have the '_wstat' function. */
#undef HAVE__WSTAT
/* define if your compiler has __attribute__ */
#undef HAVE___ATTRIBUTE__
/* Define if you have libheif library */
#undef HEIC_DELEGATE
/* Directory where ImageMagick architecture headers live. */
#undef INCLUDEARCH_PATH
/* Directory where ImageMagick headers live. */
#undef INCLUDE_PATH
/* ImageMagick is formally installed under prefix */
#undef INSTALLED_SUPPORT
/* Define if you have JBIG library */
#undef JBIG_DELEGATE
/* Define if you have JPEG library */
#undef JPEG_DELEGATE
/* Define if you have jpeg-xl library */
#undef JXL_DELEGATE
/* Define if you have LCMS library */
#undef LCMS_DELEGATE
/* Define if you have OPENJP2 library */
#undef LIBOPENJP2_DELEGATE
/* Directory where architecture-dependent files live. */
#undef LIBRARY_ABSOLUTE_PATH
/* Subdirectory of lib where ImageMagick architecture dependent files are
installed. */
#undef LIBRARY_RELATIVE_PATH
/* Binaries in libraries path base name (will be during install linked to bin)
*/
#undef LIB_BIN_BASEDIRNAME
/* Define if you have LQR library */
#undef LQR_DELEGATE
/* Define if using libltdl to support dynamically loadable modules and OpenCL
*/
#undef LTDL_DELEGATE
/* Native module suffix */
#undef LTDL_MODULE_EXT
/* Define to the sub-directory where libtool stores uninstalled libraries. */
#undef LT_OBJDIR
/* Define if you have LZMA library */
#undef LZMA_DELEGATE
/* Define to prepend to default font search path. */
#undef MAGICK_FONT_PATH
/* Target Host CPU */
#undef MAGICK_TARGET_CPU
/* Target Host OS */
#undef MAGICK_TARGET_OS
/* Target Host Vendor */
#undef MAGICK_TARGET_VENDOR
/* Module directory name without ABI part. */
#undef MODULES_BASEDIRNAME
/* Module directory dirname */
#undef MODULES_DIRNAME
/* Magick API method prefix */
#undef NAMESPACE_PREFIX
/* Magick API method prefix tag */
#undef NAMESPACE_PREFIX_TAG
/* Define to 1 if assertions should be disabled. */
#undef NDEBUG
/* Define if you have OPENEXR library */
#undef OPENEXR_DELEGATE
/* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT
/* Define to the full name of this package. */
#undef PACKAGE_NAME
/* Define to the full name and version of this package. */
#undef PACKAGE_STRING
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME
/* Define to the home page for this package. */
#undef PACKAGE_URL
/* Define to the version of this package. */
#undef PACKAGE_VERSION
/* Define if you have PANGOCAIRO library */
#undef PANGOCAIRO_DELEGATE
/* enable pipes (|) in filenames */
#undef PIPES_SUPPORT
/* Define if you have PNG library */
#undef PNG_DELEGATE
/* Define to necessary symbol if this constant uses a non-standard name on
your system. */
#undef PTHREAD_CREATE_JOINABLE
/* Pixel cache memory threshold (defaults to available memory) */
#undef PixelCacheThreshold
/* Number of bits in a pixel Quantum (8/16/32/64) */
#undef QUANTUM_DEPTH_OBSOLETE_IN_H
/* Define if you have RAQM library */
#undef RAQM_DELEGATE
/* Define if you have LIBRAW library */
#undef RAW_R_DELEGATE
/* Define if you have RSVG library */
#undef RSVG_DELEGATE
/* Setjmp/longjmp are thread safe */
#undef SETJMP_IS_THREAD_SAFE
/* Sharearch directory name without ABI part. */
#undef SHAREARCH_BASEDIRNAME
/* Sharearch directory dirname */
#undef SHAREARCH_DIRNAME
/* Directory where architecture-independent configuration files live. */
#undef SHARE_PATH
/* Subdirectory of lib where architecture-independent configuration files
live. */
#undef SHARE_RELATIVE_PATH
/* The size of 'double', as computed by sizeof. */
#undef SIZEOF_DOUBLE
/* The size of 'double_t', as computed by sizeof. */
#undef SIZEOF_DOUBLE_T
/* The size of 'float', as computed by sizeof. */
#undef SIZEOF_FLOAT
/* The size of 'float_t', as computed by sizeof. */
#undef SIZEOF_FLOAT_T
/* The size of 'long double', as computed by sizeof. */
#undef SIZEOF_LONG_DOUBLE
/* The size of 'size_t', as computed by sizeof. */
#undef SIZEOF_SIZE_T
/* The size of 'unsigned long long', as computed by sizeof. */
#undef SIZEOF_UNSIGNED_LONG_LONG
/* The size of 'void *', as computed by sizeof. */
#undef SIZEOF_VOID_P
/* Define to 1 if the 'S_IS*' macros in <sys/stat.h> do not work properly. */
#undef STAT_MACROS_BROKEN
/* Define to 1 if all of the C89 standard headers exist (not just the ones
required in a freestanding environment). This macro is provided for
backward compatibility; new code need not use it. */
#undef STDC_HEADERS
/* Define to 1 if strerror_r returns char *. */
#undef STRERROR_R_CHAR_P
/* Define if you have POSIX threads libraries and header files. */
#undef THREAD_SUPPORT
/* Define if you have TIFF library */
#undef TIFF_DELEGATE
/* Define to 1 if your <sys/time.h> declares 'struct tm'. */
#undef TM_IN_SYS_TIME
/* Define if you have google ultrahdr library */
#undef UHDR_DELEGATE
/* Enable extensions on AIX, Interix, z/OS. */
#ifndef _ALL_SOURCE
# undef _ALL_SOURCE
#endif
/* Enable general extensions on macOS. */
#ifndef _DARWIN_C_SOURCE
# undef _DARWIN_C_SOURCE
#endif
/* Enable general extensions on Solaris. */
#ifndef __EXTENSIONS__
# undef __EXTENSIONS__
#endif
/* Enable GNU extensions on systems that have them. */
#ifndef _GNU_SOURCE
# undef _GNU_SOURCE
#endif
/* Enable X/Open compliant socket functions that do not require linking
with -lxnet on HP-UX 11.11. */
#ifndef _HPUX_ALT_XOPEN_SOCKET_API
# undef _HPUX_ALT_XOPEN_SOCKET_API
#endif
/* Identify the host operating system as Minix.
This macro does not affect the system headers' behavior.
A future release of Autoconf may stop defining this macro. */
#ifndef _MINIX
# undef _MINIX
#endif
/* Enable general extensions on NetBSD.
Enable NetBSD compatibility extensions on Minix. */
#ifndef _NETBSD_SOURCE
# undef _NETBSD_SOURCE
#endif
/* Enable OpenBSD compatibility extensions on NetBSD.
Oddly enough, this does nothing on OpenBSD. */
#ifndef _OPENBSD_SOURCE
# undef _OPENBSD_SOURCE
#endif
/* Define to 1 if needed for POSIX-compatible behavior. */
#ifndef _POSIX_SOURCE
# undef _POSIX_SOURCE
#endif
/* Define to 2 if needed for POSIX-compatible behavior. */
#ifndef _POSIX_1_SOURCE
# undef _POSIX_1_SOURCE
#endif
/* Enable POSIX-compatible threading on Solaris. */
#ifndef _POSIX_PTHREAD_SEMANTICS
# undef _POSIX_PTHREAD_SEMANTICS
#endif
/* Enable extensions specified by ISO/IEC TS 18661-5:2014. */
#ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
# undef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-1:2014. */
#ifndef __STDC_WANT_IEC_60559_BFP_EXT__
# undef __STDC_WANT_IEC_60559_BFP_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-2:2015. */
#ifndef __STDC_WANT_IEC_60559_DFP_EXT__
# undef __STDC_WANT_IEC_60559_DFP_EXT__
#endif
/* Enable extensions specified by C23 Annex F. */
#ifndef __STDC_WANT_IEC_60559_EXT__
# undef __STDC_WANT_IEC_60559_EXT__
#endif
/* Enable extensions specified by ISO/IEC TS 18661-4:2015. */
#ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
# undef __STDC_WANT_IEC_60559_FUNCS_EXT__
#endif
/* Enable extensions specified by C23 Annex H and ISO/IEC TS 18661-3:2015. */
#ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
# undef __STDC_WANT_IEC_60559_TYPES_EXT__
#endif
/* Enable extensions specified by ISO/IEC TR 24731-2:2010. */
#ifndef __STDC_WANT_LIB_EXT2__
# undef __STDC_WANT_LIB_EXT2__
#endif
/* Enable extensions specified by ISO/IEC 24747:2009. */
#ifndef __STDC_WANT_MATH_SPEC_FUNCS__
# undef __STDC_WANT_MATH_SPEC_FUNCS__
#endif
/* Enable extensions on HP NonStop. */
#ifndef _TANDEM_SOURCE
# undef _TANDEM_SOURCE
#endif
/* Enable X/Open extensions. Define to 500 only if necessary
to make mbstate_t available. */
#ifndef _XOPEN_SOURCE
# undef _XOPEN_SOURCE
#endif
/* Define if you have WEBPMUX library */
#undef WEBPMUX_DELEGATE
/* Define if you have WEBP library */
#undef WEBP_DELEGATE
/* Define to use the Windows GDI32 library */
#undef WINGDI32_DELEGATE
/* Define if using the dmalloc debugging malloc package */
#undef WITH_DMALLOC
/* Define if you have WMF library */
#undef WMF_DELEGATE
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
#if defined AC_APPLE_UNIVERSAL_BUILD
# if defined __BIG_ENDIAN__
# define WORDS_BIGENDIAN 1
# endif
#else
# ifndef WORDS_BIGENDIAN
# undef WORDS_BIGENDIAN
# endif
#endif
/* Location of X11 configure files */
#undef X11_CONFIGURE_PATH
/* Define if you have X11 library */
#undef X11_DELEGATE
/* Define if you have XML library */
#undef XML_DELEGATE
/* Define to 1 if the X Window System is missing or not being used. */
#undef X_DISPLAY_MISSING
/* Build self-contained, embeddable, zero-configuration ImageMagick */
#undef ZERO_CONFIGURATION_SUPPORT
/* Define if you have ZIP library */
#undef ZIP_DELEGATE
/* Define if you have ZLIB library */
#undef ZLIB_DELEGATE
/* Define if you have ZSTD library */
#undef ZSTD_DELEGATE
/* Number of bits in a file offset, on hosts where this is settable. */
#undef _FILE_OFFSET_BITS
/* enable run-time bounds-checking */
#undef _FORTIFY_SOURCE
/* Define to 1 if necessary to make fseeko visible. */
#undef _LARGEFILE_SOURCE
/* Define to 1 on platforms where this makes off_t a 64-bit type. */
#undef _LARGE_FILES
/* Number of bits in time_t, on hosts where this is settable. */
#undef _TIME_BITS
/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
#define below would cause a syntax error. */
#undef _UINT32_T
/* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
#define below would cause a syntax error. */
#undef _UINT64_T
/* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
#define below would cause a syntax error. */
#undef _UINT8_T
/* Define to 1 if type 'char' is unsigned and your compiler does not
predefine this macro. */
#ifndef __CHAR_UNSIGNED__
# undef __CHAR_UNSIGNED__
#endif
/* Define to 1 on platforms where this makes time_t a 64-bit type. */
#undef __MINGW_USE_VC2005_COMPAT
/* Define to appropriate substitute if compiler does not have __func__ */
#undef __func__
/* Define to empty if 'const' does not conform to ANSI C. */
#undef const
/* Define as 'int' if <sys/types.h> doesn't define. */
#undef gid_t
/* Define to '__inline__' or '__inline' if that's what the C compiler
calls it, or to nothing if 'inline' is not supported under any name. */
#ifndef __cplusplus
#undef inline
#endif
/* Define to the type of a signed integer type of width exactly 16 bits if
such a type exists and the standard includes do not define it. */
#undef int16_t
/* Define to the type of a signed integer type of width exactly 32 bits if
such a type exists and the standard includes do not define it. */
#undef int32_t
/* Define to the type of a signed integer type of width exactly 64 bits if
such a type exists and the standard includes do not define it. */
#undef int64_t
/* Define to the type of a signed integer type of width exactly 8 bits if such
a type exists and the standard includes do not define it. */
#undef int8_t
/* Define to the widest signed integer type if <stdint.h> and <inttypes.h> do
not define. */
#undef intmax_t
/* Define to the type of a signed integer type wide enough to hold a pointer,
if such a type exists, and if the system does not define it. */
#undef intptr_t
/* Define to a type if <wchar.h> does not define. */
#undef mbstate_t
/* Define to 'int' if <sys/types.h> does not define. */
#undef mode_t
/* Define to 'long int' if <sys/types.h> does not define. */
#undef off_t
/* Define as a signed integer type capable of holding a process identifier. */
#undef pid_t
/* Define to the equivalent of the C99 'restrict' keyword, or to
nothing if this is not supported. Do not define if restrict is
supported only directly. */
#undef restrict
/* Work around a bug in older versions of Sun C++, which did not
#define __restrict__ or support _Restrict or __restrict__
even though the corresponding Sun C compiler ended up with
"#define restrict _Restrict" or "#define restrict __restrict__"
in the previous line. This workaround can be removed once
we assume Oracle Developer Studio 12.5 (2016) or later. */
#if defined __SUNPRO_CC && !defined __RESTRICT && !defined __restrict__
# define _Restrict
# define __restrict__
#endif
/* Define as 'unsigned int' if <stddef.h> doesn't define. */
#undef size_t
/* Define as 'int' if <sys/types.h> doesn't define. */
#undef ssize_t
/* Define as 'int' if <sys/types.h> doesn't define. */
#undef uid_t
/* Define to the type of an unsigned integer type of width exactly 16 bits if
such a type exists and the standard includes do not define it. */
#undef uint16_t
/* Define to the type of an unsigned integer type of width exactly 32 bits if
such a type exists and the standard includes do not define it. */
#undef uint32_t
/* Define to the type of an unsigned integer type of width exactly 64 bits if
such a type exists and the standard includes do not define it. */
#undef uint64_t
/* Define to the type of an unsigned integer type of width exactly 8 bits if
such a type exists and the standard includes do not define it. */
#undef uint8_t
/* Define to the widest unsigned integer type if <stdint.h> and <inttypes.h>
do not define. */
#undef uintmax_t
/* Define to the type of an unsigned integer type wide enough to hold a
pointer, if such a type exists, and if the system does not define it. */
#undef uintptr_t
/* Define to empty if the keyword 'volatile' does not work. Warning: valid
code using 'volatile' can become incorrect without. Disable with care. */
#undef volatile
|