File: setup.h.in

package info (click to toggle)
wxpython4.0 4.2.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 221,752 kB
  • sloc: cpp: 962,555; python: 230,573; ansic: 170,731; makefile: 51,756; sh: 9,342; perl: 1,564; javascript: 584; php: 326; xml: 200
file content (1296 lines) | stat: -rw-r--r-- 28,637 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
/* This define (__WX_SETUP_H__) is used both to ensure setup.h is included
 * only once and to indicate that we are building using configure. */
#ifndef __WX_SETUP_H__
#define __WX_SETUP_H__

/* never undefine inline or const keywords for C++ compilation */
#ifndef __cplusplus

/* Define to empty if the keyword does not work.  */
#undef const

/* Define as __inline if that's what the C compiler calls it.  */
#undef inline

#endif /* __cplusplus */

/* the installation location prefix from configure */
#cmakedefine wxINSTALL_PREFIX "@wxINSTALL_PREFIX@"

/* Define if ssize_t type is available.  */
#cmakedefine HAVE_SSIZE_T 1

/* Define if you have the ANSI C header files.  */
#cmakedefine STDC_HEADERS 1

/* Define this to get extra features from GNU libc. */
#ifndef _GNU_SOURCE
#cmakedefine _GNU_SOURCE 1
#endif

/* Define if your processor stores words with the most significant
   byte first (like Motorola and SPARC, unlike Intel and VAX).  */
#cmakedefine WORDS_BIGENDIAN 1

/* Define this if your version of GTK+ is greater than 1.2.7 */
#cmakedefine __WXGTK127__ 1

/* Define this if your version of GTK+ is greater than 2.0 */
#cmakedefine __WXGTK20__ 1

/* Define this if your version of GTK+ is greater than 2.10 */
#cmakedefine __WXGTK210__ 1

/* Define this if your version of GTK+ is greater than 2.18 */
#cmakedefine __WXGTK218__ 1

/* Define this if your version of GTK+ is greater than 2.20 */
#cmakedefine __WXGTK220__ 1

/* Define this if your version of GTK+ is >= 3.0 */
#cmakedefine __WXGTK3__ 1

/* Define this if your version of GTK+ is >= 3.90.0 */
#cmakedefine __WXGTK4__ 1

/* Define this if you want to use GPE features */
#cmakedefine __WXGPE__ 1

/* Define this if your version of Motif is greater than 2.0 */
#cmakedefine __WXMOTIF20__ 1

/* Define this if you are using Lesstif */
#cmakedefine __WXLESSTIF__ 1

/*
 * Define to 1 for Unix[-like] system
 */
#cmakedefine01 wxUSE_UNIX

#cmakedefine __UNIX__ 1

#cmakedefine __AIX__ 1
#cmakedefine __BSD__ 1
#cmakedefine __DARWIN__ 1
#cmakedefine __EMX__ 1
#cmakedefine __FREEBSD__ 1
#cmakedefine __HPUX__ 1
#cmakedefine __LINUX__ 1
#cmakedefine __NETBSD__ 1
#cmakedefine __OPENBSD__ 1
#cmakedefine __OSF__ 1
#cmakedefine __QNX__ 1
#cmakedefine __SGI__ 1
#cmakedefine __SOLARIS__ 1
#cmakedefine __SUN__ 1
#cmakedefine __SUNOS__ 1
#cmakedefine __SVR4__ 1
#cmakedefine __SYSV__ 1
#cmakedefine __ULTRIX__ 1
#cmakedefine __UNIXWARE__ 1
#cmakedefine __VMS__ 1

#cmakedefine __IA64__ 1
#cmakedefine __ALPHA__ 1

/* NanoX (with wxX11) */
#cmakedefine01 wxUSE_NANOX

/* PowerPC Darwin & Mac OS X */
#cmakedefine __POWERPC__ 1

/* Hack to make IOGraphicsTypes.h not define Point conflicting with MacTypes */
#undef __Point__

/* MS-DOS with DJGPP */
#cmakedefine __DOS__ 1

/* Stupid hack; __WINDOWS__ clashes with wx/defs.h */
#ifndef __WINDOWS__
#cmakedefine __WINDOWS__ 1
#endif

#ifndef __WIN32__
#cmakedefine __WIN32__ 1
#endif
#ifndef __GNUWIN32__
#cmakedefine __GNUWIN32__ 1
#endif
#ifndef STRICT
#cmakedefine STRICT
#endif
#ifndef WINVER
#cmakedefine WINVER
#endif

/* --- start common options --- */

#ifndef wxUSE_GUI
    #cmakedefine01 wxUSE_GUI
#endif


#cmakedefine01 WXWIN_COMPATIBILITY_2_8

#cmakedefine01 WXWIN_COMPATIBILITY_3_0

#cmakedefine01 wxDIALOG_UNIT_COMPATIBILITY

#cmakedefine01 wxUSE_UNSAFE_WXSTRING_CONV

#cmakedefine01 wxUSE_REPRODUCIBLE_BUILD



#cmakedefine01 wxUSE_ON_FATAL_EXCEPTION

#cmakedefine01 wxUSE_STACKWALKER

#cmakedefine01 wxUSE_DEBUGREPORT



#cmakedefine01 wxUSE_DEBUG_CONTEXT

#cmakedefine01 wxUSE_MEMORY_TRACING

#cmakedefine01 wxUSE_GLOBAL_MEMORY_OPERATORS

#cmakedefine01 wxUSE_DEBUG_NEW_ALWAYS



#ifndef wxUSE_UNICODE
    #cmakedefine01 wxUSE_UNICODE
#endif


#cmakedefine01 wxUSE_EXCEPTIONS

#cmakedefine01 wxUSE_EXTENDED_RTTI

#cmakedefine01 wxUSE_LOG

#cmakedefine01 wxUSE_LOGWINDOW

#cmakedefine01 wxUSE_LOGGUI

#cmakedefine01 wxUSE_LOG_DIALOG

#cmakedefine01 wxUSE_CMDLINE_PARSER

#cmakedefine01 wxUSE_THREADS

#cmakedefine01 wxUSE_STREAMS

#cmakedefine01 wxUSE_PRINTF_POS_PARAMS

#cmakedefine01 wxUSE_COMPILER_TLS


#cmakedefine01 wxUSE_STL

#cmakedefine01 wxUSE_STD_DEFAULT

#define wxUSE_STD_CONTAINERS_COMPATIBLY wxUSE_STD_DEFAULT

#cmakedefine01 wxUSE_STD_CONTAINERS

#define wxUSE_STD_IOSTREAM  wxUSE_STD_DEFAULT

#define wxUSE_STD_STRING  wxUSE_STD_DEFAULT

#define wxUSE_STD_STRING_CONV_IN_WXSTRING wxUSE_STL


#cmakedefine01 wxUSE_LONGLONG

#cmakedefine01 wxUSE_BASE64

#cmakedefine01 wxUSE_CONSOLE_EVENTLOOP

#cmakedefine01 wxUSE_FILE
#cmakedefine01 wxUSE_FFILE

#cmakedefine01 wxUSE_FSVOLUME

#cmakedefine01 wxUSE_SECRETSTORE

#cmakedefine01 wxUSE_SPELLCHECK

#cmakedefine01 wxUSE_STDPATHS

#cmakedefine01 wxUSE_TEXTBUFFER

#cmakedefine01 wxUSE_TEXTFILE

#cmakedefine01 wxUSE_INTL

#cmakedefine01 wxUSE_XLOCALE

#cmakedefine01 wxUSE_DATETIME

#cmakedefine01 wxUSE_TIMER

#cmakedefine01 wxUSE_STOPWATCH

#cmakedefine01 wxUSE_FSWATCHER

#cmakedefine01 wxUSE_CONFIG

#cmakedefine01 wxUSE_CONFIG_NATIVE

#cmakedefine01 wxUSE_DIALUP_MANAGER

#cmakedefine01 wxUSE_DYNLIB_CLASS

#cmakedefine01 wxUSE_DYNAMIC_LOADER

#cmakedefine01 wxUSE_SOCKETS

#cmakedefine01 wxUSE_IPV6

#cmakedefine01 wxUSE_FILESYSTEM

#cmakedefine01 wxUSE_FS_ZIP

#cmakedefine01 wxUSE_FS_ARCHIVE

#cmakedefine01 wxUSE_FS_INET

#cmakedefine01 wxUSE_ARCHIVE_STREAMS

#cmakedefine01 wxUSE_ZIPSTREAM

#cmakedefine01 wxUSE_TARSTREAM

#cmakedefine01 wxUSE_ZLIB

#cmakedefine01 wxUSE_LIBLZMA

#cmakedefine01 wxUSE_APPLE_IEEE

#cmakedefine01 wxUSE_JOYSTICK

#cmakedefine01 wxUSE_FONTENUM

#cmakedefine01 wxUSE_FONTMAP

#cmakedefine01 wxUSE_MIMETYPE

#cmakedefine01 wxUSE_WEBREQUEST

#ifdef __APPLE__
#define wxUSE_WEBREQUEST_URLSESSION wxUSE_WEBREQUEST
#else
#cmakedefine01 wxUSE_WEBREQUEST_URLSESSION
#endif

#cmakedefine01 wxUSE_WEBREQUEST_CURL

#cmakedefine01 wxUSE_PROTOCOL

#cmakedefine01 wxUSE_PROTOCOL_FILE
#cmakedefine01 wxUSE_PROTOCOL_FTP
#cmakedefine01 wxUSE_PROTOCOL_HTTP

#cmakedefine01 wxUSE_URL

#cmakedefine01 wxUSE_URL_NATIVE

#cmakedefine01 wxUSE_VARIANT

#cmakedefine01 wxUSE_ANY

#cmakedefine01 wxUSE_REGEX

#cmakedefine01 wxUSE_SYSTEM_OPTIONS

#cmakedefine01 wxUSE_SOUND

#cmakedefine01 wxUSE_MEDIACTRL

#cmakedefine01 wxUSE_XRC

#cmakedefine01 wxUSE_XML

#cmakedefine01 wxUSE_AUI

#cmakedefine01 wxUSE_RIBBON

#cmakedefine01 wxUSE_PROPGRID

#cmakedefine01 wxUSE_STC

#cmakedefine01 wxUSE_WEBVIEW

#ifdef __WXMSW__
#cmakedefine01 wxUSE_WEBVIEW_IE
#else
#cmakedefine01 wxUSE_WEBVIEW_IE
#endif

#cmakedefine01 wxUSE_WEBVIEW_EDGE

#cmakedefine01 wxUSE_WEBVIEW_EDGE_STATIC

#if (defined(__WXGTK__) && !defined(__WXGTK3__)) || defined(__WXOSX__)
#cmakedefine01 wxUSE_WEBVIEW_WEBKIT
#else
#cmakedefine01 wxUSE_WEBVIEW_WEBKIT
#endif

#if defined(__WXGTK3__)
#cmakedefine01 wxUSE_WEBVIEW_WEBKIT2
#else
#cmakedefine01 wxUSE_WEBVIEW_WEBKIT2
#endif


#if defined(_MSC_VER) || \
    (defined(__MINGW32__) && (__GNUC__ > 4 || __GNUC_MINOR__ >= 8))
#cmakedefine01 wxUSE_GRAPHICS_CONTEXT
#else
#cmakedefine01 wxUSE_GRAPHICS_CONTEXT
#endif

#cmakedefine01 wxUSE_CAIRO



#cmakedefine01 wxUSE_CONTROLS

#cmakedefine01 wxUSE_MARKUP

#cmakedefine01 wxUSE_POPUPWIN

#cmakedefine01 wxUSE_TIPWINDOW

#cmakedefine01 wxUSE_ACTIVITYINDICATOR
#cmakedefine01 wxUSE_ANIMATIONCTRL
#cmakedefine01 wxUSE_BANNERWINDOW
#cmakedefine01 wxUSE_BUTTON
#cmakedefine01 wxUSE_BMPBUTTON
#cmakedefine01 wxUSE_CALENDARCTRL
#cmakedefine01 wxUSE_CHECKBOX
#cmakedefine01 wxUSE_CHECKLISTBOX
#cmakedefine01 wxUSE_CHOICE
#cmakedefine01 wxUSE_COLLPANE
#cmakedefine01 wxUSE_COLOURPICKERCTRL
#cmakedefine01 wxUSE_COMBOBOX
#cmakedefine01 wxUSE_COMMANDLINKBUTTON
#cmakedefine01 wxUSE_DATAVIEWCTRL
#cmakedefine01 wxUSE_DATEPICKCTRL
#cmakedefine01 wxUSE_DIRPICKERCTRL
#cmakedefine01 wxUSE_EDITABLELISTBOX
#cmakedefine01 wxUSE_FILECTRL
#cmakedefine01 wxUSE_FILEPICKERCTRL
#cmakedefine01 wxUSE_FONTPICKERCTRL
#cmakedefine01 wxUSE_GAUGE
#cmakedefine01 wxUSE_HEADERCTRL
#cmakedefine01 wxUSE_HYPERLINKCTRL
#cmakedefine01 wxUSE_LISTBOX
#cmakedefine01 wxUSE_LISTCTRL
#cmakedefine01 wxUSE_RADIOBOX
#cmakedefine01 wxUSE_RADIOBTN
#cmakedefine01 wxUSE_RICHMSGDLG
#cmakedefine01 wxUSE_SCROLLBAR
#cmakedefine01 wxUSE_SEARCHCTRL
#cmakedefine01 wxUSE_SLIDER
#cmakedefine01 wxUSE_SPINBTN
#cmakedefine01 wxUSE_SPINCTRL
#cmakedefine01 wxUSE_STATBOX
#cmakedefine01 wxUSE_STATLINE
#cmakedefine01 wxUSE_STATTEXT
#cmakedefine01 wxUSE_STATBMP
#cmakedefine01 wxUSE_TEXTCTRL
#cmakedefine01 wxUSE_TIMEPICKCTRL
#cmakedefine01 wxUSE_TOGGLEBTN
#cmakedefine01 wxUSE_TREECTRL
#cmakedefine01 wxUSE_TREELISTCTRL

#cmakedefine01 wxUSE_NATIVE_DATAVIEWCTRL

#cmakedefine01 wxUSE_STATUSBAR

#cmakedefine01 wxUSE_NATIVE_STATUSBAR

#cmakedefine01 wxUSE_TOOLBAR
#cmakedefine01 wxUSE_TOOLBAR_NATIVE

#cmakedefine01 wxUSE_NOTEBOOK

#cmakedefine01 wxUSE_LISTBOOK

#cmakedefine01 wxUSE_CHOICEBOOK

#cmakedefine01 wxUSE_TREEBOOK

#cmakedefine01 wxUSE_TOOLBOOK

#cmakedefine01 wxUSE_TASKBARICON

#cmakedefine01 wxUSE_GRID

#cmakedefine01 wxUSE_MINIFRAME

#cmakedefine01 wxUSE_COMBOCTRL

#cmakedefine01 wxUSE_ODCOMBOBOX

#cmakedefine01 wxUSE_BITMAPCOMBOBOX

#cmakedefine01 wxUSE_REARRANGECTRL

#cmakedefine01 wxUSE_ADDREMOVECTRL


#cmakedefine01 wxUSE_ACCEL

#cmakedefine01 wxUSE_ARTPROVIDER_STD

#cmakedefine01 wxUSE_ARTPROVIDER_TANGO

#cmakedefine01 wxUSE_HOTKEY

#cmakedefine01 wxUSE_CARET

#cmakedefine01 wxUSE_DISPLAY

#cmakedefine01 wxUSE_GEOMETRY

#cmakedefine01 wxUSE_IMAGLIST

#cmakedefine01 wxUSE_INFOBAR

#cmakedefine01 wxUSE_MENUS

#cmakedefine01 wxUSE_MENUBAR

#cmakedefine01 wxUSE_NOTIFICATION_MESSAGE

#cmakedefine01 wxUSE_PREFERENCES_EDITOR

#cmakedefine01 wxUSE_PRIVATE_FONTS

#cmakedefine01 wxUSE_RICHTOOLTIP

#cmakedefine01 wxUSE_SASH

#cmakedefine01 wxUSE_SPLITTER

#cmakedefine01 wxUSE_TOOLTIPS

#cmakedefine01 wxUSE_VALIDATORS

#ifdef __WXMSW__
#cmakedefine01 wxUSE_AUTOID_MANAGEMENT
#else
#cmakedefine01 wxUSE_AUTOID_MANAGEMENT
#endif


#cmakedefine01 wxUSE_COMMON_DIALOGS

#cmakedefine01 wxUSE_BUSYINFO

#cmakedefine01 wxUSE_CHOICEDLG

#cmakedefine01 wxUSE_COLOURDLG

#cmakedefine01 wxUSE_DIRDLG

#cmakedefine01 wxUSE_FILEDLG

#cmakedefine01 wxUSE_FINDREPLDLG

#cmakedefine01 wxUSE_FONTDLG

#cmakedefine01 wxUSE_MSGDLG

#cmakedefine01 wxUSE_PROGRESSDLG

#cmakedefine01 wxUSE_NATIVE_PROGRESSDLG

#cmakedefine01 wxUSE_STARTUP_TIPS

#cmakedefine01 wxUSE_TEXTDLG

#cmakedefine01 wxUSE_NUMBERDLG

#cmakedefine01 wxUSE_CREDENTIALDLG

#cmakedefine01 wxUSE_SPLASH

#cmakedefine01 wxUSE_WIZARDDLG

#cmakedefine01 wxUSE_ABOUTDLG

#cmakedefine01 wxUSE_FILE_HISTORY


#cmakedefine01 wxUSE_METAFILE
#cmakedefine01 wxUSE_ENH_METAFILE
#cmakedefine01 wxUSE_WIN_METAFILES_ALWAYS


#cmakedefine01 wxUSE_MDI

#cmakedefine01 wxUSE_DOC_VIEW_ARCHITECTURE

#cmakedefine01 wxUSE_MDI_ARCHITECTURE

#cmakedefine01 wxUSE_PRINTING_ARCHITECTURE

#cmakedefine01 wxUSE_HTML

#cmakedefine01 wxUSE_GLCANVAS

#cmakedefine01 wxUSE_GLCANVAS_EGL

#cmakedefine01 wxUSE_RICHTEXT


#cmakedefine01 wxUSE_CLIPBOARD

#cmakedefine01 wxUSE_DATAOBJ

#cmakedefine01 wxUSE_DRAG_AND_DROP

#ifdef __WXMSW__
#cmakedefine01 wxUSE_ACCESSIBILITY
#else
#cmakedefine01 wxUSE_ACCESSIBILITY
#endif


#cmakedefine01 wxUSE_SNGLINST_CHECKER

#cmakedefine01 wxUSE_DRAGIMAGE

#cmakedefine01 wxUSE_IPC

#cmakedefine01 wxUSE_HELP


#cmakedefine01 wxUSE_MS_HTML_HELP


#cmakedefine01 wxUSE_WXHTML_HELP

#cmakedefine01 wxUSE_CONSTRAINTS


#cmakedefine01 wxUSE_SPLINES


#cmakedefine01 wxUSE_MOUSEWHEEL


#cmakedefine01 wxUSE_UIACTIONSIMULATOR


#cmakedefine01 wxUSE_POSTSCRIPT

#cmakedefine01 wxUSE_AFM_FOR_POSTSCRIPT

#cmakedefine01 wxUSE_SVG

#cmakedefine01 wxUSE_DC_TRANSFORM_MATRIX


#cmakedefine01 wxUSE_IMAGE

#cmakedefine01 wxUSE_LIBPNG

#cmakedefine01 wxUSE_LIBJPEG

#cmakedefine01 wxUSE_LIBTIFF

#cmakedefine01 wxUSE_NANOSVG

#cmakedefine01 wxUSE_NANOSVG_EXTERNAL

#cmakedefine01 wxUSE_TGA

#cmakedefine01 wxUSE_GIF

#cmakedefine01 wxUSE_PNM

#cmakedefine01 wxUSE_PCX

#cmakedefine01 wxUSE_IFF

#cmakedefine01 wxUSE_XPM

#cmakedefine01 wxUSE_ICO_CUR

#cmakedefine01 wxUSE_PALETTE


#cmakedefine01 wxUSE_ALL_THEMES

#cmakedefine01 wxUSE_THEME_GTK
#cmakedefine01 wxUSE_THEME_METAL
#cmakedefine01 wxUSE_THEME_MONO
#cmakedefine01 wxUSE_THEME_WIN32

/* --- end common options --- */

/*
 * Unix-specific options
 */
#cmakedefine01 wxUSE_SELECT_DISPATCHER
#cmakedefine01 wxUSE_EPOLL_DISPATCHER

#cmakedefine01 wxUSE_UNICODE_UTF8
#cmakedefine01 wxUSE_UTF8_LOCALE_ONLY

/*
   Use GStreamer for Unix.

   Default is 0 as this requires a lot of dependencies which might not be
   available.

   Recommended setting: 1 (wxMediaCtrl won't work by default without it).
 */
#cmakedefine01 wxUSE_GSTREAMER

#cmakedefine01 wxUSE_GSTREAMER_PLAYER

/*
   Use XTest extension to implement wxUIActionSimulator?

   Default is 1, it is set to 0 if the necessary headers/libraries are not
   found by configure.

   Recommended setting: 1, wxUIActionSimulator won't work in wxGTK3 without it.
 */
#cmakedefine01 wxUSE_XTEST

/* --- start MSW options --- */


#define wxUSE_GRAPHICS_GDIPLUS wxUSE_GRAPHICS_CONTEXT

#if defined(_MSC_VER) && _MSC_VER >= 1600
    #define wxUSE_GRAPHICS_DIRECT2D wxUSE_GRAPHICS_CONTEXT
#else
    #cmakedefine01 wxUSE_GRAPHICS_DIRECT2D
#endif

#cmakedefine01 wxUSE_WEBREQUEST_WINHTTP


#cmakedefine01 wxUSE_OLE

#cmakedefine01 wxUSE_OLE_AUTOMATION

#cmakedefine01 wxUSE_ACTIVEX

#if defined(_MSC_VER) && _MSC_VER >= 1700 && !defined(_USING_V110_SDK71_)
    #cmakedefine01 wxUSE_WINRT
#else
    #cmakedefine01 wxUSE_WINRT
#endif

#cmakedefine01 wxUSE_DC_CACHEING

#cmakedefine01 wxUSE_WXDIB

#cmakedefine01 wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW

#cmakedefine01 wxUSE_REGKEY

#cmakedefine01 wxUSE_RICHEDIT

#cmakedefine01 wxUSE_RICHEDIT2

#cmakedefine01 wxUSE_OWNER_DRAWN

#cmakedefine01 wxUSE_TASKBARICON_BALLOONS

#cmakedefine01 wxUSE_TASKBARBUTTON

#cmakedefine01 wxUSE_UXTHEME

#cmakedefine01 wxUSE_INKEDIT

#cmakedefine01 wxUSE_INICONF

#cmakedefine01 wxUSE_WINSOCK2


#cmakedefine01 wxUSE_DATEPICKCTRL_GENERIC

#cmakedefine01 wxUSE_TIMEPICKCTRL_GENERIC


#if defined(__VISUALC__) || defined(__MINGW64_TOOLCHAIN__)
    #cmakedefine01 wxUSE_DBGHELP
#else
    #cmakedefine01 wxUSE_DBGHELP
#endif

#cmakedefine01 wxUSE_CRASHREPORT
/* --- end MSW options --- */

/*
 * Define if your compiler has C99 va_copy
 */
#cmakedefine HAVE_VA_COPY 1

/*
 * Define if va_list type is an array
 */
#cmakedefine VA_LIST_IS_ARRAY 1

/*
 * Define if you don't want variadic macros to be used even if they are
 * supported by the compiler.
 */
#cmakedefine wxNO_VARIADIC_MACROS

/*
 * Define if your compiler has std::wstring
 */
#cmakedefine HAVE_STD_WSTRING 1
/*
 * Define if your compiler has compliant std::string::compare
 */
#cmakedefine HAVE_STD_STRING_COMPARE 1
/*
 * Define if your compiler has <hash_map>
 */
#cmakedefine HAVE_HASH_MAP 1
/*
 * Define if your compiler has <ext/hash_map>
 */
#cmakedefine HAVE_EXT_HASH_MAP 1
/*
 * Define if your compiler has std::hash_map/hash_set
 */
#cmakedefine HAVE_STD_HASH_MAP 1
/*
 * Define if your compiler has __gnu_cxx::hash_map/hash_set
 */
#cmakedefine HAVE_GNU_CXX_HASH_MAP 1

/*
 * Define if your compiler has std::unordered_map
 */
#cmakedefine HAVE_STD_UNORDERED_MAP 1

/*
 * Define if your compiler has std::unordered_set
 */
#cmakedefine HAVE_STD_UNORDERED_SET 1

/*
 * Define if your compiler has std::tr1::unordered_map
 */
#cmakedefine HAVE_TR1_UNORDERED_MAP 1

/*
 * Define if your compiler has std::tr1::unordered_set
 */
#cmakedefine HAVE_TR1_UNORDERED_SET 1

/*
 * Define if your compiler has <tr1/type_traits>
 */
#cmakedefine HAVE_TR1_TYPE_TRAITS 1

/*
 * Define if your compiler has <type_traits>
 */
#cmakedefine HAVE_TYPE_TRAITS 1

/*
 * Define if the compiler supports simple visibility declarations.
 */
#cmakedefine HAVE_VISIBILITY 1

/*
 * Define if the compiler supports GCC's atomic memory access builtins
 */
#cmakedefine HAVE_GCC_ATOMIC_BUILTINS 1

/*
 * Define if compiler's visibility support in libstdc++ is broken
 */
#cmakedefine HAVE_BROKEN_LIBSTDCXX_VISIBILITY

/*
 * On GNU systems use re_search instead of regexec, since the latter does a
 * strlen on the search text affecting the performance of some operations.
 */
#cmakedefine HAVE_RE_SEARCH
/*
 * Use SDL for audio (Unix)
 */
#cmakedefine01 wxUSE_LIBSDL

/*
 * Compile sound backends as plugins
 */
#cmakedefine01 wxUSE_PLUGINS

/*
 * Use GTK print for printing under GTK+ 2.10+
 */
#cmakedefine01 wxUSE_GTKPRINT
/*
 * Use GNOME VFS for MIME types
 */
#cmakedefine01 wxUSE_LIBGNOMEVFS
/*
 * Use libnotify library.
 */
#cmakedefine01 wxUSE_LIBNOTIFY
/*
 * Use libnotify 0.7+ API.
 */
#cmakedefine01 wxUSE_LIBNOTIFY_0_7
/*
 * Use libXpm
 */
#cmakedefine01 wxHAVE_LIB_XPM
/*
 * Define if you have pthread_cleanup_push/pop()
 */
#cmakedefine wxHAVE_PTHREAD_CLEANUP 1
/*
 * Define if compiler has __thread keyword.
 */
#cmakedefine HAVE___THREAD_KEYWORD 1
/*
 * Define if large (64 bit file offsets) files are supported.
 */
#cmakedefine HAVE_LARGEFILE_SUPPORT 1

/*
 * Use OpenGL
 */
#cmakedefine01 wxUSE_OPENGL

/*
 * Use MS HTML Help via libmspack (Unix)
 */
#cmakedefine01 wxUSE_LIBMSPACK

/*
 * Matthews garbage collection (used for MrEd?)
 */
#cmakedefine01 WXGARBAGE_COLLECTION_ON

/*
 * wxWebKitCtrl
 */
#cmakedefine01 wxUSE_WEBKIT

/*
 * The const keyword is being introduced more in wxWindows.
 * You can use this setting to maintain backward compatibility.
 * If 0: will use const wherever possible.
 * If 1: will use const only where necessary
 *       for precompiled headers to work.
 * If 2: will be totally backward compatible, but precompiled
 *       headers may not work and program size will be larger.
 */
#define CONST_COMPATIBILITY 0

/*
 * use the session manager to detect KDE/GNOME
 */
#cmakedefine01 wxUSE_DETECT_SM


/* define with the name of timezone variable */
#cmakedefine WX_TIMEZONE @WX_TIMEZONE@

/* The type of 3rd argument to getsockname() - usually size_t or int */
#cmakedefine WX_SOCKLEN_T @WX_SOCKLEN_T@

/* The type of 5th argument to getsockopt() - usually size_t or int */
#cmakedefine SOCKOPTLEN_T @SOCKOPTLEN_T@

/* The type of statvfs(2) argument */
#cmakedefine WX_STATFS_T @WX_STATFS_T@

/* The signal handler prototype */
#define wxTYPE_SA_HANDLER @wxTYPE_SA_HANDLER@

/* gettimeofday() usually takes 2 arguments, but some really old systems might
 * have only one, in which case define WX_GETTIMEOFDAY_NO_TZ */
#cmakedefine WX_GETTIMEOFDAY_NO_TZ 1

/* struct tm doesn't always have the tm_gmtoff field, define this if it does */
#cmakedefine WX_GMTOFF_IN_TM 1

/* check if nl_langinfo() can be called with argument _NL_TIME_FIRST_WEEKDAY */
#cmakedefine HAVE_NL_TIME_FIRST_WEEKDAY 1

/* Define if you have poll(2) function */
#cmakedefine HAVE_POLL 1

/* Define if you have pw_gecos field in struct passwd */
#cmakedefine HAVE_PW_GECOS 1

/* Define if you have __cxa_demangle() in <cxxabi.h> */
#cmakedefine HAVE_CXA_DEMANGLE 1

/* Define if you have dlopen() */
#cmakedefine HAVE_DLOPEN 1

/* Define if you have gettimeofday() */
#cmakedefine HAVE_GETTIMEOFDAY 1

/* Define if fsync() is available */
#cmakedefine HAVE_FSYNC 1

/* Define if round() is available */
#cmakedefine HAVE_ROUND 1

/* Define if you have ftime() */
#cmakedefine HAVE_FTIME 1

/* Define if you have nanosleep() */
#cmakedefine HAVE_NANOSLEEP 1

/* Define if you have sched_yield */
#cmakedefine HAVE_SCHED_YIELD 1

/* Define if you have pthread_mutexattr_t and functions to work with it */
#cmakedefine HAVE_PTHREAD_MUTEXATTR_T 1

/* Define if you have pthread_mutexattr_settype() declaration */
#cmakedefine HAVE_PTHREAD_MUTEXATTR_SETTYPE_DECL 1

/* Define if you have PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP */
#cmakedefine HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER 1

/* Define if you have pthread_cancel */
#cmakedefine HAVE_PTHREAD_CANCEL 1

/* Define if you have pthread_mutex_timedlock */
#cmakedefine HAVE_PTHREAD_MUTEX_TIMEDLOCK 1

/* Define if you have pthread_attr_setstacksize */
#cmakedefine HAVE_PTHREAD_ATTR_SETSTACKSIZE 1

/* Define if you have snprintf() */
#cmakedefine HAVE_SNPRINTF 1

/* Define if you have a snprintf() which supports positional arguments
   (defined in the unix98 standard) */
#cmakedefine HAVE_UNIX98_PRINTF 1

/* define if you have statfs function */
#cmakedefine HAVE_STATFS 1

/* define if you have statfs prototype */
#cmakedefine HAVE_STATFS_DECL 1

/* define if you have statvfs function */
#cmakedefine HAVE_STATVFS 1

/* Define if you have strtoull() and strtoll() */
#cmakedefine HAVE_STRTOULL 1

/* Define if you have all functions to set thread priority */
#cmakedefine HAVE_THREAD_PRIORITY_FUNCTIONS 1

/* Define if you have vsnprintf() */
#cmakedefine HAVE_VSNPRINTF 1

/* Define if you have a _broken_ vsnprintf() declaration in the header,
 * with 'char*' for the 3rd parameter instead of 'const char*' */
#cmakedefine HAVE_BROKEN_VSNPRINTF_DECL 1

/* Define if you have a _broken_ vsscanf() declaration in the header,
 * with 'char*' for the 1st parameter instead of 'const char*' */
#cmakedefine HAVE_BROKEN_VSSCANF_DECL 1

/* Define if you have vsscanf() */
#cmakedefine HAVE_VSSCANF 1

/* Define if you have usleep() */
#cmakedefine HAVE_USLEEP 1

/* Define if you have wcscasecmp() function  */
#cmakedefine HAVE_WCSCASECMP 1

/* Define if you have wcsncasecmp() function  */
#cmakedefine HAVE_WCSNCASECMP 1

/* Define if you have wcslen function  */
#cmakedefine HAVE_WCSLEN 1

/* Define if you have wcsdup function  */
#cmakedefine HAVE_WCSDUP 1

/* Define if you have wcsftime() function  */
#cmakedefine HAVE_WCSFTIME 1

/* Define if you have strnlen() function */
#cmakedefine HAVE_STRNLEN 1

/* Define if you have wcsnlen() function */
#cmakedefine HAVE_WCSNLEN 1

/* Define if you have wcstoull() and wcstoll() */
#cmakedefine HAVE_WCSTOULL 1

/* The number of bytes in a wchar_t.  */
@SIZEOF_WCHAR_T_CODE@

/* The number of bytes in a int.  */
@SIZEOF_INT_CODE@

/* The number of bytes in a pointer.  */
#define SIZEOF_VOID_P @CMAKE_SIZEOF_VOID_P@

/* The number of bytes in a long.  */
@SIZEOF_LONG_CODE@

/* The number of bytes in a long long.  */
@SIZEOF_LONG_LONG_CODE@

/* The number of bytes in a short.  */
@SIZEOF_SHORT_CODE@

/* The number of bytes in a size_t.  */
@SIZEOF_SIZE_T_CODE@

/* Define if size_t on your machine is the same type as unsigned int. */
#cmakedefine wxSIZE_T_IS_UINT 1

/* Define if size_t on your machine is the same type as unsigned long. */
#cmakedefine wxSIZE_T_IS_ULONG 1

/* Define if wchar_t is distinct type in your compiler. */
#cmakedefine wxWCHAR_T_IS_REAL_TYPE 1

/* Define if you have the dladdr function.  */
#cmakedefine HAVE_DLADDR 1

/* Define if you have Posix fnctl() function. */
#cmakedefine HAVE_FCNTL 1

/* Define if you have BSD flock() function. */
#cmakedefine HAVE_FLOCK 1

/* Define if you have getaddrinfo function. */
#cmakedefine HAVE_GETADDRINFO 1

/* Define if you have a gethostbyname_r function taking 6 arguments. */
#cmakedefine HAVE_FUNC_GETHOSTBYNAME_R_6 1

/* Define if you have a gethostbyname_r function taking 5 arguments. */
#cmakedefine HAVE_FUNC_GETHOSTBYNAME_R_5 1

/* Define if you have a gethostbyname_r function taking 3 arguments. */
#cmakedefine HAVE_FUNC_GETHOSTBYNAME_R_3 1

/* Define if you only have a gethostbyname function */
#cmakedefine HAVE_GETHOSTBYNAME 1

/* Define if you have the gethostname function.  */
#cmakedefine HAVE_GETHOSTNAME 1

/* Define if you have a getservbyname_r function taking 6 arguments. */
#cmakedefine HAVE_FUNC_GETSERVBYNAME_R_6 1

/* Define if you have a getservbyname_r function taking 5 arguments. */
#cmakedefine HAVE_FUNC_GETSERVBYNAME_R_5 1

/* Define if you have a getservbyname_r function taking 4 arguments. */
#cmakedefine HAVE_FUNC_GETSERVBYNAME_R_4 1

/* Define if you only have a getservbyname function */
#cmakedefine HAVE_GETSERVBYNAME 1

/* Define if you have the gmtime_r function.  */
#cmakedefine HAVE_GMTIME_R 1

/* Define if you have the inet_addr function.  */
#cmakedefine HAVE_INET_ADDR 1

/* Define if you have the inet_aton function.  */
#cmakedefine HAVE_INET_ATON 1

/* Define if you have the localtime_r function.  */
#cmakedefine HAVE_LOCALTIME_R 1

/* Define if you have the mktemp function.  */
#cmakedefine HAVE_MKTEMP 1

/* Define if you have the mkstemp function.  */
#cmakedefine HAVE_MKSTEMP 1

/* Define if you have the putenv function.  */
#cmakedefine HAVE_PUTENV 1

/* Define if you have the setenv function.  */
#cmakedefine HAVE_SETENV 1

/* Define if you have strtok_r function. */
#cmakedefine HAVE_STRTOK_R 1

/* Define if you have thr_setconcurrency function */
#cmakedefine HAVE_THR_SETCONCURRENCY 1

/* Define if you have pthread_setconcurrency function */
#cmakedefine HAVE_PTHREAD_SET_CONCURRENCY 1

/* Define if you have the uname function.  */
#cmakedefine HAVE_UNAME 1

/* Define if you have the unsetenv function.  */
#cmakedefine HAVE_UNSETENV 1

/* Define if you have the <X11/XKBlib.h> header file.  */
#cmakedefine HAVE_X11_XKBLIB_H 1

/* Define if you have the <X11/extensions/xf86vmode.h> header file.  */
#cmakedefine HAVE_X11_EXTENSIONS_XF86VMODE_H 1

/* Define if you have the <sched.h> header file.  */
#cmakedefine HAVE_SCHED_H 1

/* Define if you have the <unistd.h> header file.  */
#cmakedefine HAVE_UNISTD_H 1

/* Define if you have the <fcntl.h> header file.  */
#cmakedefine HAVE_FCNTL_H 1

/* Define if you have the <wchar.h> header file.  */
#cmakedefine HAVE_WCHAR_H 1

/* Define if you have the <wcstr.h> header file.  */
#cmakedefine HAVE_WCSTR_H 1

/* Define if you have <widec.h> (Solaris only) */
#cmakedefine HAVE_WIDEC_H 1

/* Define if you have the <iconv.h> header file and iconv() symbol.  */
#cmakedefine HAVE_ICONV 1

/* Define as "const" if the declaration of iconv() needs const.  */
#cmakedefine ICONV_CONST @ICONV_CONST@

/* Define if you have the <langinfo.h> header file.  */
#cmakedefine HAVE_LANGINFO_H 1

/* Define if you have the <sys/soundcard.h> header file. */
#cmakedefine HAVE_SYS_SOUNDCARD_H 1

/* Define if you have wcsrtombs() function */
#cmakedefine HAVE_WCSRTOMBS 1

/* Define this if you have putws() */
#cmakedefine HAVE_PUTWS 1

/* Define this if you have fputws() */
#cmakedefine HAVE_FPUTWS 1

/* Define this if you have wprintf() and related functions */
#cmakedefine HAVE_WPRINTF 1

/* Define this if you have vswprintf() and related functions */
#cmakedefine HAVE_VSWPRINTF 1

/* Define this if you have _vsnwprintf */
#cmakedefine HAVE__VSNWPRINTF 1

/* vswscanf() */
#cmakedefine HAVE_VSWSCANF 1

/* Define if fseeko and ftello are available.  */
#cmakedefine HAVE_FSEEKO 1

/* Define this if you are using gtk and gdk contains support for X11R6 XIM */
#cmakedefine HAVE_XIM 1

/* Define this if you have X11/extensions/shape.h */
#cmakedefine HAVE_XSHAPE 1

/* Define this if you have type SPBCDATA */
#cmakedefine HAVE_SPBCDATA 1

/* Define if you have pango_font_family_is_monospace() (Pango >= 1.3.3) */
#cmakedefine HAVE_PANGO_FONT_FAMILY_IS_MONOSPACE 1

/* Define if you have Pango xft support */
#cmakedefine HAVE_PANGO_XFT 1

/* Define if you have the <sys/select.h> header file.  */
#cmakedefine HAVE_SYS_SELECT_H 1

/* Define if you have abi::__forced_unwind in your <cxxabi.h>. */
#cmakedefine HAVE_ABI_FORCEDUNWIND 1

/* Define if fdopen is available.  */
#cmakedefine HAVE_FDOPEN 1

/* Define if sysconf is available. */
#cmakedefine HAVE_SYSCONF 1

/* Define if getpwuid_r is available. */
#cmakedefine HAVE_GETPWUID_R 1

/* Define if getgrgid_r is available. */
#cmakedefine HAVE_GETGRGID_R 1

/* Define if setpriority() is available. */
#cmakedefine HAVE_SETPRIORITY 1

/* Define if xkbcommon is available */
#cmakedefine HAVE_XKBCOMMON 1

/* Define if xlocale.h header file exists. */
#cmakedefine HAVE_XLOCALE_H 1

/* Define if locale_t is available */
#cmakedefine HAVE_LOCALE_T 1

/* Define if you have inotify_xxx() functions. */
#cmakedefine wxHAS_INOTIFY 1

/* Define if you have kqueu_xxx() functions. */
#cmakedefine wxHAS_KQUEUE 1

/* -------------------------------------------------------------------------
   Win32 adjustments section
   ------------------------------------------------------------------------- */

#ifdef __WIN32__

/* When using an external jpeg library and the Windows headers already define
 * boolean, define to the type used by the jpeg library for boolean.  */
#cmakedefine wxHACK_BOOLEAN

/* Define if the header pbt.h is missing.  */
#cmakedefine NEED_PBT_H

#endif /* __WIN32__ */

/* --------------------------------------------------------*
 *  This stuff is static, it doesn't get modified directly
 *  by configure.
*/

/*
   define some constants identifying wxWindows version in more details than
   just the version number
 */

/* wxLogChain class available */
#cmakedefine wxHAS_LOG_CHAIN

/* define this when wxDC::Blit() respects SetDeviceOrigin() in wxGTK */
#cmakedefine wxHAS_WORKING_GTK_DC_BLIT

#endif /* __WX_SETUP_H__ */