forked from vscosta/yap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h.cmake
2141 lines (1708 loc) · 53.1 KB
/
config.h.cmake
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
/*--------------------------------------------------------------------------
* This file is autogenerated from config.h.in
* during the cmake configuration of your project. If you need to make changes
* edit the original file NOT THIS FILE.
* --------------------------------------------------------------------------*/
#ifndef CONFIG_H
#define CONFIG_H
/* config.h.in. Generated from configure.in by autoheader. */
#define SYSTEM_OPTIONS "${YAP_SYSTEM_OPTIONS}"
/* Define if building universal (internal helper macro) */
#ifndef AC_APPLE_UNIVERSAL_BUILD
#cmakedefine AC_APPLE_UNIVERSAL_BUILD "${AC_APPLE_UNIVERSAL_BUILD}"
#endif
/* Are we compiling with support for depth limitT? */
#ifndef DEPTH_LIMIT
#define DEPTH_LIMIT 1
#endif
/* Are we compiling with inlined emulator instructionsT? */
#ifndef USE_THREADED_CODE
#define USE_THREADED_CODE 1
#endif
/* Are we compiling with support for TABLINGtT? */
#ifndef TABLING
#define TABLING 1
#endif
/* Are we compiling with support for WAM level tracing? */
#ifndef LOW_LEVEL_TRACER
#define LOW_LEVEL_TRACER 1
#endif
/* Are we compiling with support for threads? */
#ifndef THREADS
#cmakedefine THREADS "$YAP_THREADS"
#endif
/* Are we compiling with support for clause just-in-time compilationT? */
#ifndef YAP_JIT
#cmakedefine YAP_JIT "$YAP_JIT"
#endif
/* longs should be in addresses that are multiple of four. */
#ifndef ALIGN_LONGS
#define ALIGN_LONGS 1
#endif
/* size in bits of words. */
#ifndef BITNESS
#define BITNESS "${bitness}"
#endif
/* if fflush(NULL) clobbers input pipes1 */
#ifndef BROKEN_FFLUSH_NULL
#cmakedefine BROKEN_FFLUSH_NULL "${BROKEN_FFLUSH_NULL}"
#endif
/* size of a cell in bytes. */
#ifndef CELLSIZE
#define CELLSIZE ${CELLSIZE}
#endif
/* c-compiler used */
#ifndef C_CC
#define C_CC "${CMAKE_C_COMPILER}"
#endif
/* compilation flags */
#ifndef C_CFLAGS
#define C_CFLAGS "${CFLAGS_EXPORT} ${CMAKE_C_FLAGS} ${FLAGS} ${LANGUAGE_COMPILE_FLAGS}"
#endif
/* linking flags */
#ifndef C_LDFLAGS
#define C_LDFLAGS "${LINK_FLAGS} ${LINK_LIBRARIES}"
#endif
/* libs for linking with DLLs */
#ifndef C_LIBPLSO
#define C_LIBPLSO "${CMAKE_SHARED_LINKER_FLAGS} ${LINK_FLAGS} ${LINK_LIBRARIES}"
#endif
/* main libs for YAP */
#ifndef C_LIBS
#define C_LIBS "${EXTRALIBS}"
#endif
/* IEEE floating-point, basically everyone except old VAXEN */
#ifndef FFIEEE
#define FFIEEE 1
#endif
/* old HP-UX VM magic, should be irrelevant now */
#ifndef FORCE_SECOND_QUADRANT
#cmakedefine FORCE_SECOND_QUADRANT "${FORCE_SECOND_QUADRANT}"
#endif
/* use Barts idea of allocating extra memory,
probbly better to use two bits on 64bit machines
*/
#ifndef GC_NO_TAGS
#define GC_NO_TAGS 1
#endif
/* Define if gethostname() is provided */
#ifndef HAS_GETHOSTNAME
#cmakedefine HAS_GETHOSTNAME "${HAS_GETHOSTNAME}"
#endif
/* Define to 1 if you have the `access' function. */
#ifndef HAVE_ACCESS
#cmakedefine HAVE_ACCESS ${HAVE_ACCESS}
#endif
/* Define to 1 if you have the `acosh' function. */
#ifndef HAVE_ACOSH
#cmakedefine HAVE_ACOSH ${HAVE_ACOSH}
#endif
/* Define to 1 if you have the `add_history' function. */
#ifndef HAVE_ADD_HISTORY
#define HAVE_ADD_HISTORY ${HAVE_ADD_HISTORY}
#endif
/* Define to 1 if you have the `alarm' function. */
#ifndef HAVE_ALARM
#cmakedefine HAVE_ALARM ${HAVE_ALARM}
#endif
/* Define to 1 if you have the `alloca' function. */
#ifndef HAVE_ALLOCA
#cmakedefine HAVE_ALLOCA ${HAVE_ALLOCA}
#endif
/* Define to 1 if you have the <alloca.h> header file. */
#ifndef HAVE_ALLOCA_H
#cmakedefine HAVE_ALLOCA_H ${HAVE_ALLOCA_H}
#endif
/* Define to 1 if you have <archive.h>. */
#ifndef HAVE_ARCHIVE_H
#cmakedefine HAVE_ARCHIVE_H ${HAVE_ARCHIVE_H}
#endif
/* Define to 1 if you have the `archive_read_support_compression_bzip2'
function. */
#ifndef HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_BZIP2
#cmakedefine HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_BZIP2 ${HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_BZIP2}
#endif
/* Define to 1 if you have the `archive_read_support_compression_compress'
function. */
#ifndef HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_COMPRESS
#cmakedefine HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_COMPRESS ${HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_COMPRESS}
#endif
/* Define to 1 if you have the `archive_read_support_compression_gzip'
function. */
#ifndef HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_GZIP
#cmakedefine HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_GZIP ${HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_GZIP}
#endif
/* Define to 1 if you have the `archive_read_support_compression_lzma'
function. */
#ifndef HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_LZMA
#cmakedefine HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_LZMA ${HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_LZMA}
#endif
/* Define to 1 if you have the `archive_read_support_compression_none'
function. */
#ifndef HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_NONE
#cmakedefine HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_NONE ${HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_NONE}
#endif
/* Define to 1 if you have the `archive_read_support_compression_xz' function.
*/
#ifndef HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_XZ
#cmakedefine HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_XZ ${HAVE_ARCHIVE_READ_SUPPORT_COMPRESSION_XZ}
#endif
/* Define to 1 if you have the `archive_read_support_format_ar' function. */
#ifndef HAVE_ARCHIVE_READ_SUPPORT_FORMAT_AR
#cmakedefine HAVE_ARCHIVE_READ_SUPPORT_FORMAT_AR ${HAVE_ARCHIVE_READ_SUPPORT_FORMAT_AR}
#endif
/* Define to 1 if you have the `archive_read_support_format_cpio' function. */
#ifndef HAVE_ARCHIVE_READ_SUPPORT_FORMAT_CPIO
#cmakedefine HAVE_ARCHIVE_READ_SUPPORT_FORMAT_CPIO ${HAVE_ARCHIVE_READ_SUPPORT_FORMAT_CPIO}
#endif
/* Define to 1 if you have the `archive_read_support_format_empty' function.
*/
#ifndef HAVE_ARCHIVE_READ_SUPPORT_FORMAT_EMPTY
#cmakedefine HAVE_ARCHIVE_READ_SUPPORT_FORMAT_EMPTY ${HAVE_ARCHIVE_READ_SUPPORT_FORMAT_EMPTY}
#endif
/* Define to 1 if you have the `archive_read_support_format_iso9660' function.
*/
#ifndef HAVE_ARCHIVE_READ_SUPPORT_FORMAT_ISO9660
#cmakedefine HAVE_ARCHIVE_READ_SUPPORT_FORMAT_ISO9660 ${HAVE_ARCHIVE_READ_SUPPORT_FORMAT_ISO9660}
#endif
/* Define to 1 if you have the `archive_read_support_format_mtree' function.
*/
#ifndef HAVE_ARCHIVE_READ_SUPPORT_FORMAT_MTREE
#cmakedefine HAVE_ARCHIVE_READ_SUPPORT_FORMAT_MTREE ${HAVE_ARCHIVE_READ_SUPPORT_FORMAT_MTREE}
#endif
/* Define to 1 if you have the `archive_read_support_format_raw' function. */
#ifndef HAVE_ARCHIVE_READ_SUPPORT_FORMAT_RAW
#cmakedefine HAVE_ARCHIVE_READ_SUPPORT_FORMAT_RAW ${HAVE_ARCHIVE_READ_SUPPORT_FORMAT_RAW}
#endif
/* Define to 1 if you have the `archive_read_support_format_tar' function. */
#ifndef HAVE_ARCHIVE_READ_SUPPORT_FORMAT_TAR
#cmakedefine HAVE_ARCHIVE_READ_SUPPORT_FORMAT_TAR ${HAVE_ARCHIVE_READ_SUPPORT_FORMAT_TAR}
#endif
/* Define to 1 if you have the `archive_read_support_format_zip' function. */
#ifndef HAVE_ARCHIVE_READ_SUPPORT_FORMAT_ZIP
#cmakedefine HAVE_ARCHIVE_READ_SUPPORT_FORMAT_ZIP ${HAVE_ARCHIVE_READ_SUPPORT_FORMAT_ZIP}
#endif
/* Define to 1 if you have the <arpa/inet.h> header file. */
#ifndef HAVE_ARPA_INET_H
#cmakedefine HAVE_ARPA_INET_H ${HAVE_ARPA_INET_H}
#endif
/* Define to 1 if you have the `asinh' function. */
#ifndef HAVE_ASINH
#cmakedefine HAVE_ASINH ${HAVE_ASINH}
#endif
/* Define to 1 if you have the `atanh' function. */
#ifndef HAVE_ATANH
#cmakedefine HAVE_ATANH ${HAVE_ATANH}
#endif
/* Define to 1 if you have the `basename' function. */
#ifndef HAVE_BASENAME
#cmakedefine HAVE_BASENAME ${HAVE_BASENAME}
#endif
/* Define to 1 if you have the `basename' function. */
#ifndef HAVE_BACKTRACE
#cmakedefine HAVE_BACKTRACE ${HAVE_BACKTRACE}
#endif
/* Define to 1 if you have the `chdir' function. */
#ifndef HAVE_CHDIR
#cmakedefine HAVE_CHDIR ${HAVE_CHDIR}
#endif
/* Define to 1 if you have the `clock' function. */
#ifndef HAVE_CLOCK
#cmakedefine HAVE_CLOCK ${HAVE_CLOCK}
#endif
/* Define to 1 if you have the `clock_gettime' function. */
#ifndef HAVE_CLOCK_GETTIME
#cmakedefine HAVE_CLOCK_GETTIME ${HAVE_CLOCK_GETTIME}
#endif
/* Define to 1 if you have the <crtdbg.h> header file. */
#ifndef HAVE_CRTDBG_H
#cmakedefine HAVE_CRTDBG_H ${HAVE_CRTDBG_H}
#endif
/* Define to 1 if you have the <crt_externs.h> header file. */
#ifndef HAVE_CRT_EXTERNS_H
#cmakedefine HAVE_CRT_EXTERNS_H ${HAVE_CRT_EXTERNS_H}
#endif
/* Define to 1 if you have the `ctime' function. */
#ifndef HAVE_CTIME
#cmakedefine HAVE_CTIME ${HAVE_CTIME}
#endif
/* Define to 1 if you have the <ctype.h> header file. */
#ifndef HAVE_CTYPE_H
#cmakedefine HAVE_CTYPE_H ${HAVE_CTYPE_H}
#endif
/* Define to 1 if you have the `ftime' function. */
#ifndef HAVE_FTIME
#cmakedefine HAVE_FTIME ${HAVE_FTIME}
#endif
/* Define to 1 if you have the <sys/timeb.h> header file. */
#ifndef HAVE_SYS_TIMEB_H
#cmakedefine HAVE_SYS_TIMEB_H ${HAVE_SYS_TIMEB_H}
#endif
/* Define to 1 if you have the <direct.h> header file. */
#ifndef HAVE_DIRECT_H
#cmakedefine HAVE_DIRECT_H ${HAVE_DIRECT_H}
#endif
/* Define to 1 if you have the <dirent.h> header file. */
#ifndef HAVE_DIRENT_H
#cmakedefine HAVE_DIRENT_H ${HAVE_DIRENT_H}
#endif
/* Define to 1 if you have the <dlfcn.h> header file. */
#ifndef HAVE_DLFCN_H
#cmakedefine HAVE_DLFCN_H ${HAVE_DLFCN_H}
#endif
/* Define to 1 if you have the `dlopen' function. */
#ifndef HAVE_DLOPEN
#define HAVE_DLOPEN ${HAVE_DLOPEN}
#endif
/* Define to 1 if you have the `dup2' function. */
#ifndef HAVE_DUP2
#cmakedefine HAVE_DUP2 ${HAVE_DUP2}
#endif
/* Define if dynamic arrays are supported */
#ifndef HAVE_DYNARRAY
#cmakedefine HAVE_DYNARRAY ${HAVE_DYNARRAY}
#endif
/* environment access */
#ifndef HAVE_ENVIRON
#cmakedefine HAVE_ENVIRON ${HAVE_ENVIRON}
#endif
/* Define to 1 if you have the `erf' function. */
#ifndef HAVE_ERF
#cmakedefine HAVE_ERF ${HAVE_ERF}
#endif
/* Define to 1 if you have the <errno.h> header file. */
#ifndef HAVE_ERRNO_H
#cmakedefine HAVE_ERRNO_H ${HAVE_ERRNO_H}
#endif
/* Define to 1 if you have the <execinfo.h> header file. */
#ifndef HAVE_EXECINFO_H
#cmakedefine HAVE_EXECINFO_H ${HAVE_EXECINFO_H}
#endif
/* Define to 1 if you have the <fcntl.h> header file. */
#ifndef HAVE_FCNTL_H
#cmakedefine HAVE_FCNTL_H ${HAVE_FCNTL_H}
#endif
/* Define to 1 if you have the `feclearexcept' function. */
#ifndef HAVE_FECLEAREXCEPT
#cmakedefine HAVE_FECLEAREXCEPT ${HAVE_FECLEAREXCEPT}
#endif
/* Define to 1 if you have the `feenableexcept' function. */
#ifndef HAVE_FEENABLEEXCEPT
#cmakedefine HAVE_FEENABLEEXCEPT ${HAVE_FEENABLEEXCEPT}
#endif
/* Define to 1 if you have the <fenv.h> header file. */
#ifndef HAVE_FENV_H
#cmakedefine HAVE_FENV_H ${HAVE_FENV_H}
#endif
/* Define to 1 if you have the `fesetexceptflag' function. */
#ifndef HAVE_FESETEXCEPTFLAG
#cmakedefine HAVE_FESETEXCEPTFLAG ${HAVE_FESETEXCEPTFLAG}
#endif
/* Define to 1 if you have the `fesetround' function. */
#ifndef HAVE_FESETROUND
#cmakedefine HAVE_FESETROUND ${HAVE_FESETROUND}
#endif
/* Define to 1 if you have the `fesettrapenable' function. */
#ifndef HAVE_FESETTRAPENABLE
#cmakedefine HAVE_FESETTRAPENABLE ${HAVE_FESETTRAPENABLE}
#endif
/* Define to 1 if you have the `fetestexcept' function. */
#ifndef HAVE_FETESTEXCEPT
#cmakedefine HAVE_FETESTEXCEPT ${HAVE_FETESTEXCEPT}
#endif
/* Define to 1 if you have the `ffsl' function. */
#ifndef HAVE_FFSL
#cmakedefine HAVE_FFSL ${HAVE_FFSL}
#endif
/* Define to 1 if you have the `ftell' function. */
#ifndef HAVE_FTELL
#cmakedefine HAVE_FTELL ${HAVE_FTELL}
#endif
/* Define to 1 if you have the `ftello' function. */
#ifndef HAVE_FTELLO
#cmakedefine HAVE_FTELLO ${HAVE_FTELLO}
#endif
/* Define to 1 if you have the `fgetpos' function. */
#ifndef HAVE_FGETPOS
#cmakedefine HAVE_FGETPOS ${HAVE_FGETPOS}
#endif
/* Define to 1 if you have the `finite' function. */
#ifndef HAVE_FINITE
#cmakedefine HAVE_FINITE ${HAVE_FINITE}
#endif
/* Define to 1 if you have the <float.h> header file. */
#ifndef HAVE_FLOAT_H
#cmakedefine HAVE_FLOAT_H ${HAVE_FLOAT_H}
#endif
/* Define to 1 if you have the `flsl' function. */
#ifndef HAVE_FLSL
#cmakedefine HAVE_FLSL ${HAVE_FLSL}
#endif
/* Define to 1 if you have the `flsll' function. */
#ifndef HAVE_FLSLL
#cmakedefine HAVE_FLSLL ${HAVE_FLSLL}
#endif
/* Define to 1 if you have the `fmemopen' function. */
#ifndef HAVE_FMEMOPEN
#cmakedefine HAVE_FMEMOPEN ${HAVE_FMEMOPEN}
#endif
#if CONDA_BUILD
#undef HAVE_FMEMOPEN
#endif
/* Define to 1 if you have the `fpclass' function. */
#ifndef HAVE_FPCLASS
#cmakedefine HAVE_FPCLASS ${HAVE_FPCLASS}
#endif
/* Define to 1 if you have the `fpurge' function. */
#ifndef HAVE_FPURGE
#cmakedefine HAVE_FPURGE ${HAVE_FPURGE}
#endif
/* Define to 1 if you have the <fpu_control.h> header file. */
#ifndef HAVE_FPU_CONTROL_H
#cmakedefine HAVE_FPU_CONTROL_H ${HAVE_FPU_CONTROL_H}
#endif
/* Define to 1 if you have the `ftime' function. */
#ifndef HAVE_FTIME
#cmakedefine HAVE_FTIME ${HAVE_FTIME}
#endif
/* Define to 1 if you have the `ftruncate' function. */
#ifndef HAVE_FTRUNCATE
#cmakedefine HAVE_FTRUNCATE ${HAVE_FTRUNCATE}
#endif
/* Define to 1 if you have the `funopen' function. */
#ifndef HAVE_FUNOPEN
#cmakedefine HAVE_FUNOPEN ${HAVE_FUNOPEN}
#endif
/* Old m4 auto-heder generation, not really useful now */
#ifndef HAVE_GCC
#cmakedefine HAVE_GCC ${HAVE_GCC}
#endif
/* Define to 1 if you have the `getcwd' function. */
#ifndef HAVE_GETCWD
#cmakedefine HAVE_GETCWD ${HAVE_GETCWD}
#endif
/* Define to 1 if you have the `getenv' function. */
#ifndef HAVE_GETENV
#cmakedefine HAVE_GETENV ${HAVE_GETENV}
#endif
/* Define to 1 if you have the `getexecname' function. */
#ifndef HAVE_GETEXECNAME
#cmakedefine HAVE_GETEXECNAME ${HAVE_GETEXECNAME}
#endif
/* Define to 1 if you have the `gethostbyname' function. */
#ifndef HAVE_GETHOSTBYNAME
#cmakedefine HAVE_GETHOSTBYNAME ${HAVE_GETHOSTBYNAME}
#endif
/* Define to 1 if you have the `gethostent' function. */
#ifndef HAVE_GETHOSTENT
#cmakedefine HAVE_GETHOSTENT ${HAVE_GETHOSTENT}
#endif
/* Define to 1 if you have the `gethostid' function. */
#ifndef HAVE_GETHOSTID
#cmakedefine HAVE_GETHOSTID ${HAVE_GETHOSTID}
#endif
/* Define to 1 if you have the `gethostname' function. */
#ifndef HAVE_GETHOSTNAME
#cmakedefine HAVE_GETHOSTNAME ${HAVE_GETHOSTNAME}
#endif
/* Define to 1 if you have the `gethrtime' function. */
#ifndef HAVE_GETHRTIME
#cmakedefine HAVE_GETHRTIME ${HAVE_GETHRTIME}
#endif
/* Define to 1 if you have the `getpagesize' function. */
#ifndef HAVE_GETPAGESIZE
#cmakedefine HAVE_GETPAGESIZE ${HAVE_GETPAGESIZE}
#endif
/* Define to 1 if you have the `getpid' function. */
#ifndef HAVE_GETPID
#cmakedefine HAVE_GETPID ${HAVE_GETPID}
#endif
/* Define to 1 if you have the `getpwnam' function. */
#ifndef HAVE_GETPWNAM
#cmakedefine HAVE_GETPWNAM ${HAVE_GETPWNAM}
#endif
/* Define to 1 if you have the `getrlimit' function. */
#ifndef HAVE_GETRLIMIT
#cmakedefine HAVE_GETRLIMIT ${HAVE_GETRLIMIT}
#endif
/* Define to 1 if you have the `getrusage' function. */
#ifndef HAVE_GETRUSAGE
#cmakedefine HAVE_GETRUSAGE ${HAVE_GETRUSAGE}
#endif
/* Define to 1 if you have the `gettimeofday' function. */
#ifndef HAVE_GETTIMEOFDAY
#cmakedefine HAVE_GETTIMEOFDAY ${HAVE_GETTIMEOFDAY}
#endif
/* Define to 1 if you have the `getwd' function. */
#ifndef HAVE_GETWD
#cmakedefine HAVE_GETWD ${HAVE_GETWD}
#endif
/* Define to 1 if you have the <gmp.h> header file. */
#ifndef HAVE_GMP_H
#cmakedefine HAVE_GMP_H ${HAVE_GMP_H}
#endif
/* Define to 1 if you have the <winsock.h> header file. */
#ifndef HAVE_GLOB_H
#cmakedefine HAVE_GLOB_H ${HAVE_GLOB_H}
#endif
/* Define to 1 if you have the <winsock.h> header file. */
#ifndef HAVE_GLOB
#cmakedefine HAVE_GLOB ${HAVE_GLOB}
#endif
/* Define to 1 if you have the `gmtime' function. */
#ifndef HAVE_GMTIME
#cmakedefine HAVE_GMTIME ${HAVE_GMTIME}
#endif
/* Define of h_errno is provided */
#ifndef HAVE_H_ERRNO
#cmakedefine HAVE_H_ERRNO ${HAVE_H_ERRNO}
#endif
/* Define to 1 if you have the <ieeefp.h> header file. */
#ifndef HAVE_IEEEFP_H
#cmakedefine HAVE_IEEEFP_H ${HAVE_IEEEFP_H}
#endif
/* Define to 1 if you have the <inttypes.h> header file. */
#ifndef HAVE_INTTYPES_H
#cmakedefine HAVE_INTTYPES_H ${HAVE_INTTYPES_H}
#endif
/* Define to 1 if you have the <io.h> header file. */
#ifndef HAVE_IO_H
#cmakedefine HAVE_IO_H ${HAVE_IO_H}
#endif
/* Define to 1 if you have the `isatty' function. */
#ifndef HAVE_ISATTY
#cmakedefine HAVE_ISATTY ${HAVE_ISATTY}
#endif
/* Define to 1 if you have the `isfinite' function. */
#ifndef HAVE_ISFINITE
#cmakedefine HAVE_ISFINITE ${HAVE_ISFINITE}
#endif
/* Define to 1 if you have the `isinf' function. */
#ifndef HAVE_ISINF
#cmakedefine HAVE_ISINF ${HAVE_ISINF}
#endif
/* Define to 1 if you have the `isnan' function. */
#ifndef HAVE_ISNAN
#cmakedefine HAVE_ISNAN ${HAVE_ISNAN}
#endif
/* Define to 1 if you have the `isnan' function. */
#ifndef HAVE_ISWBLANK
#cmakedefine HAVE_ISWBLANK ${HAVE_ISWBLANK}
#endif
/* Define to 1 if you have the `iswspace' function. */
#ifndef HAVE_ISWSPACE
#cmakedefine HAVE_ISWSPACE ${HAVE_ISWSPACE}
#endif
/* Define to 1 if you have the <Judy.h> header file. */
#ifndef HAVE_JUDY_H
#cmakedefine HAVE_JUDY_H ${HAVE_JUDY_H}
#endif
/* Define to 1 if you have the `kill' function. */
#ifndef HAVE_KILL
#cmakedefine HAVE_KILL ${HAVE_KILL}
#endif
/* Define to 1 if you have the `labs' function. */
#ifndef HAVE_LABS
#cmakedefine HAVE_LABS ${HAVE_LABS}
#endif
/* Define to 1 if you have the `lgamma' function. */
#ifndef HAVE_LGAMMA
#cmakedefine HAVE_LGAMMA ${HAVE_LGAMMA}
#endif
/* Define to 1 if you have the `android' library (-landroid). */
#ifndef HAVE_LIBANDROID
#define HAVE_LIBANDROID ${HAVE_LIBANDROID}
#endif
/* Define to 1 if you have the `comdlg32' library (-lcomdlg32). */
#ifndef HAVE_LIBCOMDLG32
#define HAVE_LIBCOMDLG32 ${HAVE_LIBCOMDLG32}
#endif
/* Define to 1 if you have the `crypt' library (-lcrypt). */
#ifndef HAVE_LIBCRYPT
#define HAVE_LIBCRYPT ${HAVE_LIBCRYPT}
#endif
/* Define to 1 if you have the `basename' function. */
#ifndef HAVE_CRYPT
#cmakedefine HAVE_CRYPT ${HAVE_CRYPT}
#endif
/* Define to 1 if you have the <memory.h> header file. */
#ifndef HAVE_LIBGEN_H
#cmakedefine HAVE_LIBGEN_H ${HAVE_LIBGEN_H}
#endif
/* Define to 1 if you have the `gmp' library (-lgmp). */
#ifndef HAVE_LIBGMP
#define HAVE_LIBGMP ${HAVE_LIBGMP}
#endif
/* Define to 1 if you have the `Judy' library (-lJudy). */
#ifndef HAVE_LIBJUDY
#define HAVE_LIBJUDY ${HAVE_LIBJUDY}
#endif
/* Define to 1 if you have the <LibLoaderAPI.h> header file. */
#ifndef HAVE_LIBLOADERAPI_H
#define HAVE_LIBLOADERAPI_H ${HAVE_LIBLOADERAPI_H}
#endif
/* Define to 1 if you have the `log' library (-llog). */
#ifndef HAVE_LIBLOG
#define HAVE_LIBLOG ${HAVE_LIBLOG}
#endif
/* Define to 1 if you have the `m' library (-lm). */
#ifndef HAVE_LIBM
#define HAVE_LIBM ${HAVE_LIBM}
#endif
/* MPI Debugging off */
#ifndef HAVE_LIBMPE
#define HAVE_LIBMPE ${HAVE_LIBMPE}
#endif
/* Define to 1 if you have the `mscrt' library (-lmscrt). */
#ifndef HAVE_LIBMSCRT
#define HAVE_LIBMSCRT ${HAVE_LIBMSCRT}
#endif
/* "Define if you have the nsl library (-lnsl)." */
#ifndef HAVE_LIBNSL
#define HAVE_LIBNSL ${HAVE_LIBNSL}
#endif
/* Define to 1 if you have the `nss_dns' library (-lnss_dns). */
#ifndef HAVE_LIBNSS_DNS
#define HAVE_LIBNSS_DNS ${HAVE_LIBNSS_DNS}
#endif
/* Define to 1 if you have the `nss_files' library (-lnss_files). */
#ifndef HAVE_LIBNSS_FILES
#define HAVE_LIBNSS_FILES ${HAVE_LIBNSS_FILES}
#endif
/* Define to 1 if you have the `psapi' library (-lpsapi). */
#ifndef HAVE_LIBPSAPI
#define HAVE_LIBPSAPI ${HAVE_LIBPSAPI}
#endif
#ifndef HAVE_CRYPT
#cmakedefine HAVE_CRYPT ${HAVE_CRYPT}
#endif
/* Define to 1 if you have the `gmp' library (-lgmp). */
#ifndef HAVE_LIBGMP
#define HAVE_LIBGMP ${HAVE_LIBGMP}
#endif
/* Define to 1 if you have the `Judy' library (-lJudy). */
#ifndef HAVE_LIBJUDY
#define HAVE_LIBJUDY ${HAVE_LIBJUDY}
#endif
/* Define to 1 if you have the <LibLoaderAPI.h> header file. */
#ifndef HAVE_LIBLOADERAPI_H
#define HAVE_LIBLOADERAPI_H ${HAVE_LIBLOADERAPI_H}
#endif
/* Define to 1 if you have the `log' library (-llog). */
#ifndef HAVE_LIBLOG
#define HAVE_LIBLOG ${HAVE_LIBLOG}
#endif
/* Define to 1 if you have the `m' library (-lm). */
#ifndef HAVE_LIBM
#define HAVE_LIBM ${HAVE_LIBM}
#endif
/* MPI Debugging off */
#ifndef HAVE_LIBMPE
#define HAVE_LIBMPE ${HAVE_LIBMPE}
#endif
/* Define to 1 if you have the `mscrt' library (-lmscrt). */
#ifndef HAVE_LIBMSCRT
#define HAVE_LIBMSCRT ${HAVE_LIBMSCRT}
#endif
/* "Define if you have the nsl library (-lnsl)." */
#ifndef HAVE_LIBNSL
#define HAVE_LIBNSL ${HAVE_LIBNSL}
#endif
/* Define to 1 if you have the `nss_dns' library (-lnss_dns). */
#ifndef HAVE_LIBNSS_DNS
#define HAVE_LIBNSS_DNS ${HAVE_LIBNSS_DNS}
#endif
/* Define to 1 if you have the `nss_files' library (-lnss_files). */
#ifndef HAVE_LIBNSS_FILES
#define HAVE_LIBNSS_FILES ${HAVE_LIBNSS_FILES}
#endif
/* Define to 1 if you have the `shlwapi' library (-lshlwapi). */
#ifndef HAVE_LIBSHLWAPI
#define HAVE_LIBSHLWAPI ${HAVE_LIBSHLWAPI}
#endif
/* Define to 1 if you have the `pthread' library (-lpthread). */
#ifndef HAVE_LIBPTHREAD
#define HAVE_LIBPTHREAD ${HAVE_LIBPTHREAD}
#endif
/* Define to 1 if you have the `raptor' library (-lraptor). */
#ifndef HAVE_LIBRAPTOR
#define HAVE_LIBRAPTOR ${HAVE_LIBRAPTOR}
#endif
/* Define to 1 if you have the `raptor2' library (-lraptor2). */
#ifndef HAVE_LIBRAPTOR2
#define HAVE_LIBRAPTOR2 ${HAVE_LIBRAPTOR2}
#endif
/* Define to 1 if you have the `resolv' library (-lresolv). */
#ifndef HAVE_LIBRESOLV
#define HAVE_LIBRESOLV ${HAVE_LIBRESOLV}
#endif
/* Define to 1 if you have the `shell32' library (-lshell32). */
#ifndef HAVE_LIBSHELL32
#define HAVE_LIBSHELL32 ${HAVE_LIBSHELL32}
#endif
/* "Define if you have the socket library (-lsocket)." */
#ifndef HAVE_LIBSOCKET
#define HAVE_LIBSOCKET ${HAVE_LIBSOCKET}
#endif
/* Define to 1 if you have the `stdc++' library (-lstdc++). */
#ifndef HAVE_LIBSTDC__
#define HAVE_LIBSTDC__ ${HAVE_LIBSTDC__}
#endif
/* Whether we have libunicode.a */
#ifndef HAVE_LIBUNICODE
#define HAVE_LIBUNICODE ${HAVE_LIBUNICODE}
#endif
/* Define to 1 if you have the `ws2_32' library (-lws2_32). */
#ifndef HAVE_LIBWS2_32
#define HAVE_LIBWS2_32 ${HAVE_LIBWS2_32}
#endif
/* Define to 1 if you have the `wsock32' library (-lwsock32). */
#ifndef HAVE_LIBWSOCK32
#define HAVE_LIBWSOCK32 ${HAVE_LIBWSOCK32}
#endif
/* Define to 1 if you have the `xnet' library (-lxnet). */
#ifndef HAVE_LIBXNET
#define HAVE_LIBXNET ${HAVE_LIBXNET}
#endif
/* Define to 1 if you have the <limits.h> header file. */
#ifndef HAVE_LIMITS_H
#cmakedefine HAVE_LIMITS_H ${HAVE_LIMITS_H}
#endif
/* Define to 1 if you have the `link' function. */
#ifndef HAVE_LINK
#cmakedefine HAVE_LINK ${HAVE_LINK}
#endif
/* Define to 1 if you have the `LoadLibrary' function. */
#ifndef HAVE_LOADLIBRARY
#cmakedefine HAVE_LOADLIBRARY ${HAVE_LOADLIBRARY}
#endif
/* Define to 1 if you have the `localeconv' function. */
#ifndef HAVE_LOCALECONV
#cmakedefine HAVE_LOCALECONV ${HAVE_LOCALECONV}
#endif
/* Define to 1 if you have the <locale.h> header file. */
#ifndef HAVE_LOCALE_H
#cmakedefine HAVE_LOCALE_H ${HAVE_LOCALE_H}
#endif
/* Define to 1 if you have the `localtime' function. */
#ifndef HAVE_LOCALTIME
#cmakedefine HAVE_LOCALTIME ${HAVE_LOCALTIME}
#endif
/* Define to 1 if the system has the type `long long'. */
#ifndef HAVE_LONG_LONG
#cmakedefine HAVE_LONG_LONG ${HAVE_LONG_LONG}
#endif
/* Define to 1 if you have the `lstat' function. */
#ifndef HAVE_LSTAT
#cmakedefine HAVE_LSTAT ${HAVE_LSTAT}
#endif
/* Define to 1 if you have the <mach-o/dyld.h> header file. */
#ifndef HAVE_MACH_O_DYLD_H
#cmakedefine HAVE_MACH_O_DYLD_H ${HAVE_MACH_O_DYLD_H}
#endif
/* Define to 1 if you have the `mallinfo' function. */
#ifndef HAVE_MALLINFO
#cmakedefine HAVE_MALLINFO ${HAVE_MALLINFO}
#endif
/* Define to 1 if you have the <malloc.h> header file. */
#ifndef HAVE_MALLOC_H
#cmakedefine HAVE_MALLOC_H ${HAVE_MALLOC_H}
#endif
/* Define to 1 if you have the <math.h> header file. */
#ifndef HAVE_MATH_H
#cmakedefine HAVE_MATH_H ${HAVE_MATH_H}
#endif
/* Define to 1 if you have the `mbscasecoll' function. */
#ifndef HAVE_MBSCASECOLL
#cmakedefine HAVE_MBSCASECOLL ${HAVE_MBSCASECOLL}
#endif
/* Define to 1 if you have the `mbscoll' function. */
#ifndef HAVE_MBSCOLL
#cmakedefine HAVE_MBSCOLL ${HAVE_MBSCOLL}
#endif
/* Define to 1 if you have the `mbsnrtowcs' function. */
#ifndef HAVE_MBSNRTOWCS
#cmakedefine HAVE_MBSNRTOWCS ${HAVE_MBSNRTOWCS}
#endif
/* Define to 1 if you have the `memmove' function. */
#ifndef HAVE_MEMCPY
#cmakedefine HAVE_MEMCPY ${HAVE_MEMCPY}
#endif
/* Define to 1 if you have the `memmove' function. */
#ifndef HAVE_MEMMOVE
#cmakedefine HAVE_MEMMOVE ${HAVE_MEMMOVE}
#endif
/* Define to 1 if you have the <memory.h> header file. */
#ifndef HAVE_MEMORY_H
#cmakedefine HAVE_MEMORY_H ${HAVE_MEMORY_H}
#endif
/* Define to 1 if you have the `mkstemp' function. */
#ifndef HAVE_MKSTEMP
#cmakedefine HAVE_MKSTEMP ${HAVE_MKSTEMP}
#endif
/* Define to 1 if you have the `mktemp' function. */
#ifndef HAVE_MKTEMP
#cmakedefine HAVE_MKTEMP ${HAVE_MKTEMP}
#endif
/* Define to 1 if you have the `mktime' function. */
#ifndef HAVE_MKTIME
#cmakedefine HAVE_MKTIME ${HAVE_MKTIME}
#endif
/* Define to 1 if you have the `mmap' function. */
#ifndef HAVE_MMAP
#cmakedefine HAVE_MMAP ${HAVE_MMAP}
#endif
/* Define to 1 if you have the <mpe.h> header file. */
#ifndef HAVE_MPE_H
#cmakedefine HAVE_MPE_H ${HAVE_MPE_H}
#endif
/* Define to 1 if you have the <mpi.h> header file. */
#ifndef HAVE_MPI_H
#cmakedefine HAVE_MPI_H ${HAVE_MPI_H}
#endif
/* Define to 1 if you have the <mtrace> glibc extension. */
#ifndef HAVE_MPI_H
#cmakedefine HAVE_MTRACE ${HAVE_TRACE}
#endif
/* Older versions of MPZ didn't have XOR */
#ifndef HAVE_MPZ_XOR
#cmakedefine HAVE_MPZ_XOR ${HAVE_MPZ_XOR}
#endif
/* Define to 1 if you have the <mysql/mysql.h> header file. */
#ifndef HAVE_MYSQL_MYSQL_H
#cmakedefine HAVE_MYSQL_MYSQL_H ${HAVE_MYSQL_MYSQL_H}
#endif
/* Define to 1 if you have the `nanosleep' function. */
#ifndef HAVE_NANOSLEEP
#cmakedefine HAVE_NANOSLEEP ${HAVE_NANOSLEEP}
#endif
/* Define to 1 if you have the <netdb.h> header file. */
#ifndef HAVE_NETDB_H
#cmakedefine HAVE_NETDB_H ${HAVE_NETDB_H}
#endif
/* Define to 1 if you have the <netinet/in.h> header file. */
#ifndef HAVE_NETINET_IN_H
#cmakedefine HAVE_NETINET_IN_H ${HAVE_NETINET_IN_H}
#endif
/* Define to 1 if you have the <netinet/tcp.h> header file. */
#ifndef HAVE_NETINET_TCP_H
#cmakedefine HAVE_NETINET_TCP_H ${HAVE_NETINET_TCP_H}
#endif
/* Define to 1 if you have the `NSLinkModule' function. */
#ifndef HAVE_NSLINKMODULE
#cmakedefine HAVE_NSLINKMODULE ${HAVE_NSLINKMODULE}
#endif
/* c++ nullptr support */
#ifndef HAVE_NULLPTR
#cmakedefine HAVE_NULLPTR ${HAVE_NULLPTR}
#endif