File: config.h.in

package info (click to toggle)
efl 1.21.1-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 261,264 kB
  • sloc: ansic: 1,026,744; cpp: 43,352; cs: 14,773; sh: 5,539; makefile: 3,347; objc: 1,518; pascal: 431; python: 322; xml: 182; sed: 16
file content (1463 lines) | stat: -rw-r--r-- 35,227 bytes parent folder | download
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
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
/* config.h.in.  Generated from configure.ac by autoheader.  */


#ifndef EFL_CONFIG_H__
#define EFL_CONFIG_H__


/* Define if building universal (internal helper macro) */
#undef AC_APPLE_UNIVERSAL_BUILD

/* Build Altivec Code */
#undef BUILD_ALTIVEC

/* Use biggest dither mask while converting in Evas */
#undef BUILD_BIG_DITHER_MASK

/* Support for X11_DRI2 Backend in Ecore_Buffer */
#undef BUILD_ECORE_BUFFER_X11_DRI2

/* Support for X11_DRI3 Backend in Ecore_Buffer */
#undef BUILD_ECORE_BUFFER_X11_DRI3

/* Support for drm Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_DRM

/* Support for ews Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_EWS

/* Support for extn Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_EXTN

/* Support for fb Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_FB

/* Support for gl-drm Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_GL_DRM

/* Support for opengl-cocoa Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_OPENGL_COCOA

/* Support for opengl-sdl Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_OPENGL_SDL

/* Support for opengl-x11 Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_OPENGL_X11

/* OpenGL Xlib rendering backend */
#undef BUILD_ECORE_EVAS_OPENGL_XLIB

/* Support for SDL Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_SDL

/* Support for software-ddraw Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_SOFTWARE_DDRAW

/* Support for software-gdi Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_SOFTWARE_GDI

/* Support for software-sdl Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_SOFTWARE_SDL

/* Support for software-x11 Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_SOFTWARE_X11

/* Evas Software Xlib Engine Support */
#undef BUILD_ECORE_EVAS_SOFTWARE_XLIB

/* Build Ecore_Evas VNC module */
#undef BUILD_ECORE_EVAS_VNC_SERVER

/* Support for Wayland Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_WAYLAND

/* Support for wayland-egl Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_WAYLAND_EGL

/* Support for wayland-shm Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_WAYLAND_SHM

/* Support for Win32 Engine in Ecore_Evas */
#undef BUILD_ECORE_EVAS_WIN32

/* Support for X Window Engines in Ecore_Evas */
#undef BUILD_ECORE_EVAS_X11

/* Ecore Imf IBUS Support */
#undef BUILD_ECORE_IMF_IBUS

/* Ecore Imf SCIM Support */
#undef BUILD_ECORE_IMF_SCIM

/* Ecore Imf Wayland Support */
#undef BUILD_ECORE_IMF_WAYLAND

/* Use Fixed Point instead of FPU */
#undef BUILD_EDJE_FP

/* Build buffer Evas engine */
#undef BUILD_ENGINE_BUFFER

/* Drm rendering backend */
#undef BUILD_ENGINE_DRM

/* OpenGL Fb rendering backend */
#undef BUILD_ENGINE_EGLFS

/* Build fb Evas engine */
#undef BUILD_ENGINE_FB

/* OpenGL Cocoa rendering backend */
#undef BUILD_ENGINE_GL_COCOA

/* Generic OpenGL Rendering Support */
#undef BUILD_ENGINE_GL_COMMON

/* OpenGL Drm rendering backend */
#undef BUILD_ENGINE_GL_DRM

/* OpenGL SDL rendering backend */
#undef BUILD_ENGINE_GL_SDL

/* Build OpenGL X11 engine */
#undef BUILD_ENGINE_GL_X11

/* OpenGL XLib rendering backend */
#undef BUILD_ENGINE_GL_XLIB

/* Software DirectDraw rendering backend */
#undef BUILD_ENGINE_SOFTWARE_DDRAW

/* Software GDI rendering backend */
#undef BUILD_ENGINE_SOFTWARE_GDI

/* Build software X11 engine */
#undef BUILD_ENGINE_SOFTWARE_X11

/* Software Xlib rendering backend */
#undef BUILD_ENGINE_SOFTWARE_XLIB

/* Building any wayland evas engine */
#undef BUILD_ENGINE_WAYLAND_COMMON

/* Wayland Egl rendering backend */
#undef BUILD_ENGINE_WAYLAND_EGL

/* Wayland Shm rendering backend */
#undef BUILD_ENGINE_WAYLAND_SHM

/* Use simpler line-only dither mask while converting in Evas */
#undef BUILD_LINE_DITHER_MASK

/* UP Image Loader Support */
#undef BUILD_LOADER_BMP

/* UP Image Loader Support */
#undef BUILD_LOADER_DDS

/* UP Image Loader Support */
#undef BUILD_LOADER_EET

/* UP Image Loader Support */
#undef BUILD_LOADER_GENERIC

/* UP Image Loader Support */
#undef BUILD_LOADER_GIF

/* UP Image Loader Support */
#undef BUILD_LOADER_ICO

/* UP Image Loader Support */
#undef BUILD_LOADER_JP2K

/* UP Image Loader Support */
#undef BUILD_LOADER_JPEG

/* JPEG Region Decode Support */
#undef BUILD_LOADER_JPEG_REGION

/* UP Image Loader Support */
#undef BUILD_LOADER_PMAPS

/* UP Image Loader Support */
#undef BUILD_LOADER_PNG

/* UP Image Loader Support */
#undef BUILD_LOADER_PSD

/* UP Image Loader Support */
#undef BUILD_LOADER_TGA

/* UP Image Loader Support */
#undef BUILD_LOADER_TGV

/* UP Image Loader Support */
#undef BUILD_LOADER_TIFF

/* UP Image Loader Support */
#undef BUILD_LOADER_WBMP

/* UP Image Loader Support */
#undef BUILD_LOADER_WEBP

/* UP Image Loader Support */
#undef BUILD_LOADER_XPM

/* Build MMX Code */
#undef BUILD_MMX

/* Build NEON Code */
#undef BUILD_NEON

/* Build NEON Intrinsics */
#undef BUILD_NEON_INTRINSICS

/* Do not use dither masks while converting in Evas */
#undef BUILD_NO_DITHER_MASK

/* Use smaller dither mask while converting in Evas */
#undef BUILD_SMALL_DITHER_MASK

/* Build SSE3 Code */
#undef BUILD_SSE3

/* UP Image Loader Support */
#undef BUILD_VG_LOADER_EET

/* UP Image Loader Support */
#undef BUILD_VG_LOADER_SVG

/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
   systems. This function is required for `alloca.c' support on those systems.
   */
#undef CRAY_STACKSEG_END

/* Define to 1 if using `alloca.c'. */
#undef C_ALLOCA

/* Ftp url for testing */
#undef ECORE_CON_FTP_TEST_URL

/* Http url for testing */
#undef ECORE_CON_HTTP_TEST_URL

/* Build support for Xcomposite */
#undef ECORE_XCOMPOSITE

/* Build support for Xcursor */
#undef ECORE_XCURSOR

/* Build support for Xdamage */
#undef ECORE_XDAMAGE

/* Build support for Xdpms */
#undef ECORE_XDPMS

/* Build support for Xfixes */
#undef ECORE_XFIXES

/* Build support for Xgesture */
#undef ECORE_XGESTURE

/* Build support for Xi2 */
#undef ECORE_XI2

/* Build support for Xi2_2 */
#undef ECORE_XI2_2

/* Build support for Xinerama */
#undef ECORE_XINERAMA

/* Build support for Xkb */
#undef ECORE_XKB

/* Build support for Xpresent */
#undef ECORE_XPRESENT

/* Build support for Xrandr */
#undef ECORE_XRANDR

/* Build support for Xrender */
#undef ECORE_XRENDER

/* Build support for Xss */
#undef ECORE_XSS

/* Build support for Xtest */
#undef ECORE_XTEST

/* Cache result of calc glob matches */
#undef EDJE_CALC_CACHE

/* Cache result of program glob matches */
#undef EDJE_PROGRAM_CACHE

/* eject bin to use */
#undef EEZE_EJECT_BIN

/* mount bin to use */
#undef EEZE_MOUNT_BIN

/* umount bin to use */
#undef EEZE_UNMOUNT_BIN

/* Macro declaring a function to always be inlined. */
#undef EFL_ALWAYS_INLINE

/* Enable access to unstable EFL API that are still in beta */
#undef EFL_BETA_API_SUPPORT

/* Enable access to unstable EFL Eo API */
#undef EFL_EO_API_SUPPORT

/* Extra run time sanity checks */
#undef EFL_EXTRA_SANITY_CHECKS

/* Define to mention that OSX spinlocks are supported */
#undef EFL_HAVE_OSX_SPINLOCK

/* Define to mention that POSIX threads spinlocks are supported */
#undef EFL_HAVE_POSIX_THREADS_SPINLOCK

/* Define to mention that POSIX or Win32 threads are supported */
#undef EFL_HAVE_THREADS

/* Set to 1 if static is built */
#undef EINA_BUILD_CHAINED_POOL

/* Set to 1 if static is built */
#undef EINA_BUILD_ONE_BIG

/* Set to 1 if static is built */
#undef EINA_BUILD_PASS_THROUGH

/* Turn on Eina_Magic in Eina_Cow */
#undef EINA_COW_MAGIC_ON

/* Turn on debugging overhead in mempool */
#undef EINA_DEBUG_MALLOC

/* Default log level triggering backtraces */
#undef EINA_LOG_BACKTRACE_ENABLE

/* if set, logging is limited to this amount. */
#undef EINA_LOG_LEVEL_MAXIMUM

/* Set to 1 if static is statically built */
#undef EINA_STATIC_BUILD_CHAINED_POOL

/* Set to 1 if static is statically built */
#undef EINA_STATIC_BUILD_ONE_BIG

/* Set to 1 if static is statically built */
#undef EINA_STATIC_BUILD_PASS_THROUGH

/* Report Eina stringshare usage pattern */
#undef EINA_STRINGSHARE_USAGE

/* "subdirectory for all elementary data" */
#undef ELEMENTARY_BASE_DIR

/* Build generic Evas engine */
#undef EMOTION_BUILD_GENERIC

/* Build gstreamer Evas engine */
#undef EMOTION_BUILD_GSTREAMER

/* Build gstreamer1 Evas engine */
#undef EMOTION_BUILD_GSTREAMER1

/* Build libvlc Evas engine */
#undef EMOTION_BUILD_LIBVLC

/* Build xine Evas engine */
#undef EMOTION_BUILD_XINE

/* Build generic Evas engine inside libevas */
#undef EMOTION_STATIC_BUILD_GENERIC

/* Build gstreamer Evas engine inside libevas */
#undef EMOTION_STATIC_BUILD_GSTREAMER

/* Build gstreamer1 Evas engine inside libevas */
#undef EMOTION_STATIC_BUILD_GSTREAMER1

/* Build libvlc Evas engine inside libevas */
#undef EMOTION_STATIC_BUILD_LIBVLC

/* Build xine Evas engine inside libevas */
#undef EMOTION_STATIC_BUILD_XINE

/* Use liblz4 external library instead of embedded copy */
#undef ENABLE_LIBLZ4

/* Use interpreted Lua (5.1 or 5.2) */
#undef ENABLE_LUA_OLD

/* Use Multisense */
#undef ENABLE_MULTISENSE

/* Define to 1 if translation of program messages to the user's native
   language is requested. */
#undef ENABLE_NLS

/* Enable X Input Method */
#undef ENABLE_XIM

/* Shared cache server. */
#undef EVAS_CSERVE2

/* Hunspell-compatible hyphen dictionaries install directory */
#undef EVAS_DICTS_HYPHEN_DIR

/* Build BMP image loader inside libevas */
#undef EVAS_STATIC_BUILD_BMP

/* Build buffer Evas engine inside libevas */
#undef EVAS_STATIC_BUILD_BUFFER

/* Build DDS image loader inside libevas */
#undef EVAS_STATIC_BUILD_DDS

/* Build drm engine inside libevas */
#undef EVAS_STATIC_BUILD_DRM

/* Build Eet image loader inside libevas */
#undef EVAS_STATIC_BUILD_EET

/* Build eglfs engine inside libevas */
#undef EVAS_STATIC_BUILD_EGLFS

/* Build fb Evas engine inside libevas */
#undef EVAS_STATIC_BUILD_FB

/* Build Generic image loader inside libevas */
#undef EVAS_STATIC_BUILD_GENERIC

/* Build Gif image loader inside libevas */
#undef EVAS_STATIC_BUILD_GIF

/* Build gl-cocoa engine inside libevas */
#undef EVAS_STATIC_BUILD_GL_COCOA

/* Build GL generic engine as part of libevas */
#undef EVAS_STATIC_BUILD_GL_COMMON

/* Build gl-drm engine inside libevas */
#undef EVAS_STATIC_BUILD_GL_DRM

/* Build gl-sdl engine inside libevas */
#undef EVAS_STATIC_BUILD_GL_SDL

/* Build OpenGL X11 engine as part of libevas */
#undef EVAS_STATIC_BUILD_GL_X11

/* Build gl-xlib engine inside libevas */
#undef EVAS_STATIC_BUILD_GL_XLIB

/* Build ICO image loader inside libevas */
#undef EVAS_STATIC_BUILD_ICO

/* Build JP2K image loader inside libevas */
#undef EVAS_STATIC_BUILD_JP2K

/* Build JPEG image loader inside libevas */
#undef EVAS_STATIC_BUILD_JPEG

/* Build PMAPS image loader inside libevas */
#undef EVAS_STATIC_BUILD_PMAPS

/* Build PNG image loader inside libevas */
#undef EVAS_STATIC_BUILD_PNG

/* Build PSD image loader inside libevas */
#undef EVAS_STATIC_BUILD_PSD

/* Build software-ddraw engine inside libevas */
#undef EVAS_STATIC_BUILD_SOFTWARE_DDRAW

/* Build software-gdi engine inside libevas */
#undef EVAS_STATIC_BUILD_SOFTWARE_GDI

/* Build software generic engine as part of libevas */
#undef EVAS_STATIC_BUILD_SOFTWARE_GENERIC

/* Build software X11 engine as part of libevas */
#undef EVAS_STATIC_BUILD_SOFTWARE_X11

/* Build software-xlib engine inside libevas */
#undef EVAS_STATIC_BUILD_SOFTWARE_XLIB

/* Build Tga image loader inside libevas */
#undef EVAS_STATIC_BUILD_TGA

/* Build TGV image loader inside libevas */
#undef EVAS_STATIC_BUILD_TGV

/* Build Tiff image loader inside libevas */
#undef EVAS_STATIC_BUILD_TIFF

/* Build EET vg loader inside libevas */
#undef EVAS_STATIC_BUILD_VG_EET

/* Build SVG vg loader inside libevas */
#undef EVAS_STATIC_BUILD_VG_SVG

/* Build wayland-egl engine inside libevas */
#undef EVAS_STATIC_BUILD_WAYLAND_EGL

/* Build wayland-shm engine inside libevas */
#undef EVAS_STATIC_BUILD_WAYLAND_SHM

/* Build WBMP image loader inside libevas */
#undef EVAS_STATIC_BUILD_WBMP

/* Build WEBP image loader inside libevas */
#undef EVAS_STATIC_BUILD_WEBP

/* Build XPM image loader inside libevas */
#undef EVAS_STATIC_BUILD_XPM

/* Suffix for binary objects */
#undef EXEEXT

/* Imagination SGX GLES2 support */
#undef GLES_VARIETY_SGX

/* Always integrate glib if support compiled */
#undef GLIB_INTEGRATION_ALWAYS

/* GLSL runtime shader GLES2 support */
#undef GL_GLES

/* Have abstract sockets namespace */
#undef HAVE_ABSTRACT_SOCKETS

/* Define to 1 if you have the `accept4' function. */
#undef HAVE_ACCEPT4

/* Define to 1 if you have `alloca', as a function or macro. */
#undef HAVE_ALLOCA

/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
   */
#undef HAVE_ALLOCA_H

/* Alsa support */
#undef HAVE_ALSA

/* Have altivec.h header file */
#undef HAVE_ALTIVEC_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 <arpa/nameser.h> header file. */
#undef HAVE_ARPA_NAMESER_H

/* Define to 1 if you have the <asm/hwcap.h> header file. */
#undef HAVE_ASM_HWCAP_H

/* Use fstatat and other -at file functions */
#undef HAVE_ATFILE_SOURCE

/* Have `avahi' pkg-config installed. */
#undef HAVE_AVAHI

/* Define to 1 if you have the `backtrace' function. */
#undef HAVE_BACKTRACE

/* Define to 1 if you have the `backtrace_symbols' function. */
#undef HAVE_BACKTRACE_SYMBOLS

/* GCC builtin bswap16 exists */
#undef HAVE_BSWAP16

/* GCC builtin bswap32 exists */
#undef HAVE_BSWAP32

/* GCC builtin bswap64 exists */
#undef HAVE_BSWAP64

/* Have `bullet' pkg-config installed. */
#undef HAVE_BULLET

/* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
   CoreFoundation framework. */
#undef HAVE_CFLOCALECOPYCURRENT

/* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
   the CoreFoundation framework. */
#undef HAVE_CFPREFERENCESCOPYAPPVALUE

/* Have cipher support built in eet */
#undef HAVE_CIPHER

/* Define to 1 if you have the `clearenv' function. */
#undef HAVE_CLEARENV

/* Have clock_gettime() */
#undef HAVE_CLOCK_GETTIME

/* Define to 1 if you have the <crt_externs.h> header file. */
#undef HAVE_CRT_EXTERNS_H

/* Compiling bindings for C Sharp */
#undef HAVE_CSHARP

/* define if the compiler supports basic C++11 syntax */
#undef HAVE_CXX11

/* Have `dbus' pkg-config installed. */
#undef HAVE_DBUS

/* Define if the GNU dcgettext() function is already present or preinstalled.
   */
#undef HAVE_DCGETTEXT

/* 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 a valid <dirent.h> header file. */
#undef HAVE_DIRENT_H

/* Define to 1 if you have the `dirfd' function. */
#undef HAVE_DIRFD

/* Define to 1 if you have the `dladdr' function. */
#undef HAVE_DLADDR

/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H

/* Define to 1 if you have the `dlopen' function. */
#undef HAVE_DLOPEN

/* Define to 1 if you have the `dlsym' function. */
#undef HAVE_DLSYM

/* Have `drm' pkg-config installed. */
#undef HAVE_DRM

/* optional EFL Ecore_Audio is enabled */
#undef HAVE_ECORE_AUDIO

/* optional EFL Ecore_Buffer is enabled */
#undef HAVE_ECORE_BUFFER

/* optional EFL Ecore_Cocoa is enabled */
#undef HAVE_ECORE_COCOA

/* optional EFL Ecore_Drm is enabled */
#undef HAVE_ECORE_DRM

/* optional EFL Ecore_Drm2 is enabled */
#undef HAVE_ECORE_DRM2

/* optional EFL Ecore_FB is enabled */
#undef HAVE_ECORE_FB

/* Ecore IMF Support */
#undef HAVE_ECORE_IMF

/* optional EFL Ecore_Js is enabled */
#undef HAVE_ECORE_JS

/* optional EFL Ecore_SDL is enabled */
#undef HAVE_ECORE_SDL

/* optional EFL Ecore_Wayland is enabled */
#undef HAVE_ECORE_WAYLAND

/* optional EFL Ecore_Win32 is enabled */
#undef HAVE_ECORE_WIN32

/* optional EFL Ecore_Wl2 is enabled */
#undef HAVE_ECORE_WL2

/* optional EFL Ecore_X is enabled */
#undef HAVE_ECORE_X

/* optional EFL Eeze is enabled */
#undef HAVE_EEZE

/* Have `eeze_mount' pkg-config installed. */
#undef HAVE_EEZE_MOUNT

/* optional EFL Efl_Custom_Exports_Mono is enabled */
#undef HAVE_EFL_CUSTOM_EXPORTS_MONO

/* optional EFL Efl_Js is enabled */
#undef HAVE_EFL_JS

/* optional EFL Efl_Mono is enabled */
#undef HAVE_EFL_MONO

/* optional EFL Efl_Wl is enabled */
#undef HAVE_EFL_WL

/* optional EFL Eina_Js is enabled */
#undef HAVE_EINA_JS

/* Have eio library */
#undef HAVE_EIO

/* optional EFL Eio_Js is enabled */
#undef HAVE_EIO_JS

/* optional EFL Eldbus_Js is enabled */
#undef HAVE_ELDBUS_JS

/* Cocoa support for Elementary */
#undef HAVE_ELEMENTARY_COCOA

/* Elementary debug. */
#undef HAVE_ELEMENTARY_DEBUG

/* DRM support for Elementary */
#undef HAVE_ELEMENTARY_DRM

/* FB support for Elementary */
#undef HAVE_ELEMENTARY_FB

/* optional EFL Elementary_Js is enabled */
#undef HAVE_ELEMENTARY_JS

/* SDL support for Elementary */
#undef HAVE_ELEMENTARY_SDL

/* Win32 support for Elementary */
#undef HAVE_ELEMENTARY_WIN32

/* Wl2 support for Elementary */
#undef HAVE_ELEMENTARY_WL2

/* X support for Elementary */
#undef HAVE_ELEMENTARY_X

/* Have `elput' pkg-config installed. */
#undef HAVE_ELPUT

/* optional EFL Elua is enabled */
#undef HAVE_ELUA

/* Have `emotion_module_gstreamer' pkg-config installed. */
#undef HAVE_EMOTION_MODULE_GSTREAMER

/* Have `emotion_module_gstreamer1' pkg-config installed. */
#undef HAVE_EMOTION_MODULE_GSTREAMER1

/* Have `emotion_module_libvlc' pkg-config installed. */
#undef HAVE_EMOTION_MODULE_LIBVLC

/* Have `emotion_module_xine' pkg-config installed. */
#undef HAVE_EMOTION_MODULE_XINE

/* extern environ exists */
#undef HAVE_ENVIRON

/* optional EFL Eolian_Js is enabled */
#undef HAVE_EOLIAN_JS

/* optional EFL Eo_Js is enabled */
#undef HAVE_EO_JS

/* EPhysics Support */
#undef HAVE_EPHYSICS

/* optional EFL Escape is enabled */
#undef HAVE_ESCAPE

/* optional EFL Ethumb_Js is enabled */
#undef HAVE_ETHUMB_JS

/* optional EFL Evil is enabled */
#undef HAVE_EVIL

/* Define to 1 if you have the <execinfo.h> header file. */
#undef HAVE_EXECINFO_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' function. */
#undef HAVE_FCNTL

/* Define to 1 if you have the <features.h> header file. */
#undef HAVE_FEATURES_H

/* Define to 1 if you have the `fnmatch' function. */
#undef HAVE_FNMATCH

/* Have `fontconfig' pkg-config installed. */
#undef HAVE_FONTCONFIG

/* Define to 1 if you have the `fork' function. */
#undef HAVE_FORK

/* Define to 1 if you have the `fpathconf' function. */
#undef HAVE_FPATHCONF

/* Have `freetype' pkg-config installed. */
#undef HAVE_FREETYPE

/* Have `fribidi' pkg-config installed. */
#undef HAVE_FRIBIDI

/* Define to 1 if you have the `fstatat' function. */
#undef HAVE_FSTATAT

/* Define to 1 if your compiler supports __attribute__ ((vector)). */
#undef HAVE_GCC_ATTRIBUTE_VECTOR

/* Define to 1 if you have the `geteuid' function. */
#undef HAVE_GETEUID

/* Define to 1 if you have the `getpagesize' function. */
#undef HAVE_GETPAGESIZE

/* Define to 1 if you have the `getpwent' function. */
#undef HAVE_GETPWENT

/* Define if the GNU gettext() function is already present or preinstalled. */
#undef HAVE_GETTEXT

/* Define to 1 if you have the `gettimeofday' function. */
#undef HAVE_GETTIMEOFDAY

/* Define to 1 if you have the `getuid' function. */
#undef HAVE_GETUID

/* Have `glib' pkg-config installed. */
#undef HAVE_GLIB

/* Define to 1 if you have the `gmtime_r' function. */
#undef HAVE_GMTIME_R

/* Have `gnutls' pkg-config installed. */
#undef HAVE_GNUTLS

/* have harfbuzz support */
#undef HAVE_HARFBUZZ

/* have hunspell hyphen support */
#undef HAVE_HYPHEN

/* Define to 1 if you have the `iconv' function. */
#undef HAVE_ICONV

/* Define to 1 if you have the <ieeefp.h> header file. */
#undef HAVE_IEEEFP_H

/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H

/* Define if IPV6 is supported */
#undef HAVE_IPV6

/* Define to 1 if you have 'isfinite', as a function or macro. */
#undef HAVE_ISFINITE

/* Compiling bindings for JavaScript */
#undef HAVE_JS

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

/* Have `libinput' pkg-config installed. */
#undef HAVE_LIBINPUT

/* Have `liblz4' pkg-config installed. */
#undef HAVE_LIBLZ4

/* Compiling libuv event loop integration */
#undef HAVE_LIBUV

/* Define to 1 if you have the <locale.h> header file. */
#undef HAVE_LOCALE_H

/* Have local sockets support */
#undef HAVE_LOCAL_SOCKETS

/* GCC builtin lround exists */
#undef HAVE_LROUND

/* Have `lua' pkg-config installed. */
#undef HAVE_LUA

/* Have `luajit' pkg-config installed. */
#undef HAVE_LUAJIT

/* Define to 1 if you have the `mallinfo' function. */
#undef HAVE_MALLINFO

/* Define to 1 if you have the `malloc_info' function. */
#undef HAVE_MALLOC_INFO

/* Define to 1 if you have the `malloc_usable_size' function. */
#undef HAVE_MALLOC_USABLE_SIZE

/* Define to 1 if you have the <mcheck.h> header file. */
#undef HAVE_MCHECK_H

/* define if the MCS compiler is available */
#undef HAVE_MCS

/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H

/* Define to 1 if you have the `mkdirat' function. */
#undef HAVE_MKDIRAT

/* Have sys/mman.h header file */
#undef HAVE_MMAN_H

/* Define to 1 if you have a working `mmap' system call. */
#undef HAVE_MMAP

/* Define to 1 if you have the `mtrace' function. */
#undef HAVE_MTRACE

/* 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 <netinet/tcp.h> header file. */
#undef HAVE_NETINET_TCP_H

/* Define to 1 if you have the <netinet/udp.h> header file. */
#undef HAVE_NETINET_UDP_H

/* Define to 1 if you have the <net/if.h> header file. */
#undef HAVE_NET_IF_H

/* Using NodeJS */
#undef HAVE_NODEJS

/* Define to 1 if you have the <nodejs/deps/node/include/node.h> header file.
   */
#undef HAVE_NODEJS_DEPS_NODE_INCLUDE_NODE_H

/* Define to 1 if you have the <nodejs/deps/node/node.h> header file. */
#undef HAVE_NODEJS_DEPS_NODE_NODE_H

/* Define to 1 if you have the <nodejs/deps/uv/include/uv.h> header file. */
#undef HAVE_NODEJS_DEPS_UV_INCLUDE_UV_H

/* Define to 1 if you have the <nodejs/deps/uv/uv.h> header file. */
#undef HAVE_NODEJS_DEPS_UV_UV_H

/* Define to 1 if you have the <nodejs/deps/v8/include/v8.h> header file. */
#undef HAVE_NODEJS_DEPS_V8_INCLUDE_V8_H

/* Define to 1 if you have the <nodejs/deps/v8/v8.h> header file. */
#undef HAVE_NODEJS_DEPS_V8_V8_H

/* Define to 1 if you have the <nodejs/src/node.h> header file. */
#undef HAVE_NODEJS_SRC_NODE_H

/* Define to 1 if you have the <nodejs/src/uv.h> header file. */
#undef HAVE_NODEJS_SRC_UV_H

/* Define to 1 if you have the <nodejs/src/v8.h> header file. */
#undef HAVE_NODEJS_SRC_V8_H

/* Define to 1 if you have the <node.h> header file. */
#undef HAVE_NODE_H

/* Define to 1 if you have the <node/node.h> header file. */
#undef HAVE_NODE_NODE_H

/* Define to 1 if you have the <node/uv.h> header file. */
#undef HAVE_NODE_UV_H

/* Define to 1 if you have the <node/v8.h> header file. */
#undef HAVE_NODE_V8_H

/* File monitoring with fsevent notification */
#undef HAVE_NOTIFY_COCOA

/* File monitoring with kqueue/kevent mechanism */
#undef HAVE_NOTIFY_KEVENT

/* File monitoring with Windows notification */
#undef HAVE_NOTIFY_WIN32

/* Have `openssl' pkg-config installed. */
#undef HAVE_OPENSSL

/* Define to 1 if you have the `pause' function. */
#undef HAVE_PAUSE

/* Have `pixman' pkg-config installed. */
#undef HAVE_PIXMAN

/* Define to 1 if you have the `prctl' function. */
#undef HAVE_PRCTL

/* Define to 1 if you have the `pthread_getcpuclockid' function. */
#undef HAVE_PTHREAD_GETCPUCLOCKID

/* Define if the <pthread.h> defines PTHREAD_MUTEX_RECURSIVE. */
#undef HAVE_PTHREAD_MUTEX_RECURSIVE

/* Define if the POSIX multithreading library has read/write locks. */
#undef HAVE_PTHREAD_RWLOCK

/* Pulseaudio support */
#undef HAVE_PULSE

/* Define to 1 if you have the `realpath' function. */
#undef HAVE_REALPATH

/* Define to 1 if you have the `sched_getcpu' function. */
#undef HAVE_SCHED_GETCPU

/* Have `sdl' pkg-config installed. */
#undef HAVE_SDL

/* SDL_OPENGLES flag is present */
#undef HAVE_SDL_FLAG_OPENGLES

/* SDL_GL version attributes present */
#undef HAVE_SDL_GL_CONTEXT_VERSION

/* Define to 1 if you have the `setxattr' function. */
#undef HAVE_SETXATTR

/* Define to 1 if you have the `shm_open' function. */
#undef HAVE_SHM_OPEN

/* Define to 1 if the system has the type `siginfo_t'. */
#undef HAVE_SIGINFO_T

/* Define to 1 if you have the `siglongjmp' function. */
#undef HAVE_SIGLONGJMP

/* Have signature support for eet file */
#undef HAVE_SIGNATURE

/* Sndfile support */
#undef HAVE_SNDFILE

/* Define to 1 if you have the `splice' function. */
#undef HAVE_SPLICE

/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H

/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H

/* Define to 1 if you have the `strerror_r' function. */
#undef HAVE_STRERROR_R

/* 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 `strlcpy' function. */
#undef HAVE_STRLCPY

/* Define to 1 if the system has the type `struct ipv6_mreq'. */
#undef HAVE_STRUCT_IPV6_MREQ

/* Define to 1 if the system has the type `struct sigaction'. */
#undef HAVE_STRUCT_SIGACTION

/* Have librsvg >= 2.36 */
#undef HAVE_SVG_2_36

/* Have `systemd' pkg-config installed. */
#undef HAVE_SYSTEMD

/* Defined if systemd >= 209 */
#undef HAVE_SYSTEMD_LOGIN_209

/* Define to 1 if you have the <sys/auxv.h> header file. */
#undef HAVE_SYS_AUXV_H

/* 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/epoll.h> header file. */
#undef HAVE_SYS_EPOLL_H

/* Define to 1 if you have the <sys/filio.h> header file. */
#undef HAVE_SYS_FILIO_H

/* Define to 1 if you have the <sys/inotify.h> header file. */
#undef HAVE_SYS_INOTIFY_H

/* Define to 1 if you have the <sys/ioctl.h> header file. */
#undef HAVE_SYS_IOCTL_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/prctl.h> header file. */
#undef HAVE_SYS_PRCTL_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/signalfd.h> header file. */
#undef HAVE_SYS_SIGNALFD_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/timerfd.h> header file. */
#undef HAVE_SYS_TIMERFD_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/types.h> header file. */
#undef HAVE_SYS_TYPES_H

/* Define to 1 if you have the <sys/un.h> header file. */
#undef HAVE_SYS_UN_H

/* Define to 1 if you have the <sys/wait.h> header file. */
#undef HAVE_SYS_WAIT_H

/* Define if TCP_CORK is defined in netinet/tcp.h */
#undef HAVE_TCP_CORK

/* Define if TCP_NOPUSH is defined in netinet/tcp.h */
#undef HAVE_TCP_NOPUSH

/* Have the __thread specifier */
#undef HAVE_THREAD_SPECIFIER

/* Define to 1 if you have the `timerfd_create' function. */
#undef HAVE_TIMERFD_CREATE

/* Define to 1 if you have Tizen configuration manager(vconf). */
#undef HAVE_TIZEN_CONFIGURATION_MANAGER

/* Have `tslib' pkg-config installed. */
#undef HAVE_TSLIB

/* Have `udev' pkg-config installed. */
#undef HAVE_UDEV

/* Define if UDP_CORK is defined in netinet/udp.h */
#undef HAVE_UDP_CORK

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

/* Have libunwind */
#undef HAVE_UNWIND

/* Define to 1 if you have the <uv.h> header file. */
#undef HAVE_UV_H

/* Define to 1 if you have Video4Linux 2 available */
#undef HAVE_V4L2

/* Define to 1 if you must pass create_params explicitly. */
#undef HAVE_V8_CREATE_PARAMS

/* Define to 1 if you must pass create_params explicitly. */
#undef HAVE_V8_GLOBAL

/* Define to 1 if you have the <v8.h> header file. */
#undef HAVE_V8_H

/* Valgrind support enabled */
#undef HAVE_VALGRIND

/* Wasapiaudio support */
#undef HAVE_WASAPI

/* Have `wayland' pkg-config installed. */
#undef HAVE_WAYLAND

/* Define to 1 if you have the <winsock2.h> header file. */
#undef HAVE_WINSOCK2_H

/* Define to 1 if you have the <ws2tcpip.h> header file. */
#undef HAVE_WS2TCPIP_H

/* Define to 1 if you have the `listxattr', `setxattr' and `getxattr'
   functions. */
#undef HAVE_XATTR

/* Have `xkbcommonx11' pkg-config installed. */
#undef HAVE_XKBCOMMONX11

/* Build with Gstreamer Xoverlay support */
#undef HAVE_XOVERLAY_H

/* Use gst_x_overlay_set_window_handle instead of old deprecated
   gst_x_overlay_set_xwindow_id */
#undef HAVE_X_OVERLAY_SET

/* Define to the sub-directory where libtool stores uninstalled libraries. */
#undef LT_OBJDIR

/* "Module architecture" */
#undef MODULE_ARCH

/* Need EFL_RUN_IN_TREE=1 trick */
#undef NEED_RUN_IN_TREE

/* Valgrind support disabled */
#undef NVALGRIND

/* using first version of libmount */
#undef OLD_LIBMOUNT

/* using older version of libudev */
#undef OLD_LIBUDEV

/* Name of package */
#undef PACKAGE

/* 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

/* default value since PATH_MAX is not defined */
#undef PATH_MAX

/* Allow pixman to render fonts */
#undef PIXMAN_FONT

/* Allow pixman to render images */
#undef PIXMAN_IMAGE

/* Allow pixman to render image sampled scaling */
#undef PIXMAN_IMAGE_SCALE_SAMPLE

/* Allow pixman to render lines */
#undef PIXMAN_LINE

/* Allow pixman to render polys */
#undef PIXMAN_POLY

/* Allow pixman to render rects */
#undef PIXMAN_RECT

/* Define if the pthread_in_use() detection is hard. */
#undef PTHREAD_IN_USE_DETECTION_HARD

/* Suffix for shared objects */
#undef SHARED_LIB_SUFFIX

/* The size of `Eina_Unicode', as computed by sizeof. */
#undef SIZEOF_EINA_UNICODE

/* The size of `FriBidiChar', as computed by sizeof. */
#undef SIZEOF_FRIBIDICHAR

/* The size of `int', as computed by sizeof. */
#undef SIZEOF_INT

/* The size of `long', as computed by sizeof. */
#undef SIZEOF_LONG

/* The size of `uintptr_t', as computed by sizeof. */
#undef SIZEOF_UINTPTR_T

/* The size of `wchar_t', as computed by sizeof. */
#undef SIZEOF_WCHAR_T

/* Sloppy Spec Compliance */
#undef SLOPPY_SPEC

/* If using the C implementation of alloca, define if you know the
   direction of stack growth for your system; otherwise it will be
   automatically deduced at runtime.
	STACK_DIRECTION > 0 => grows toward higher addresses
	STACK_DIRECTION < 0 => grows toward lower addresses
	STACK_DIRECTION = 0 => direction of growth unknown */
#undef STACK_DIRECTION

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

/* Define to 1 if strerror_r returns char *. */
#undef STRERROR_R_CHAR_P

/* Enable tiled rotate algorithm */
#undef TILE_ROTATE

/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#undef TIME_WITH_SYS_TIME

/* Define to 1 if you have Windows Fiber support. */
#undef USE_FIBER

/* Use g_main_loop in ecore */
#undef USE_G_MAIN_LOOP

/* Ecore_Wl2 IVI-Shell Support */
#undef USE_IVI_SHELL

/* Define if the POSIX multithreading library can be used. */
#undef USE_POSIX_THREADS

/* Define if references to the POSIX multithreading library should be made
   weak. */
#undef USE_POSIX_THREADS_WEAK

/* Define if the GNU Pth multithreading library can be used. */
#undef USE_PTH_THREADS

/* Define if references to the GNU Pth multithreading library should be made
   weak. */
#undef USE_PTH_THREADS_WEAK

/* Define to 1 if you have setjmp/longjmp functions. */
#undef USE_SETJMP

/* Define if the old Solaris multithreading library can be used. */
#undef USE_SOLARIS_THREADS

/* Define if references to the old Solaris multithreading library should be
   made weak. */
#undef USE_SOLARIS_THREADS_WEAK

/* Enable extensions on AIX 3, Interix.  */
#ifndef _ALL_SOURCE
# undef _ALL_SOURCE
#endif
/* Enable GNU extensions on systems that have them.  */
#ifndef _GNU_SOURCE
# undef _GNU_SOURCE
#endif
/* Enable threading extensions on Solaris.  */
#ifndef _POSIX_PTHREAD_SEMANTICS
# undef _POSIX_PTHREAD_SEMANTICS
#endif
/* Enable extensions on HP NonStop.  */
#ifndef _TANDEM_SOURCE
# undef _TANDEM_SOURCE
#endif
/* Enable general extensions on Solaris.  */
#ifndef __EXTENSIONS__
# undef __EXTENSIONS__
#endif


/* Define to 1 if you have posix ucontext functions. */
#undef USE_UCONTEXT

/* Define if the Win32 multithreading API can be used. */
#undef USE_WIN32_THREADS

/* Version number of package */
#undef VERSION

/* Major version */
#undef VMAJ

/* Micro version */
#undef VMIC

/* Minor version */
#undef VMIN

/* Revison */
#undef VREV

/* Want Ecore_Timer dump infrastructure */
#undef WANT_ECORE_TIMER_DUMP

/* 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

/* xattr enabled directory */
#undef XATTR_TEST_DIR

/* good xrandr */
#undef XRANDR_GOOD

/* Define to 1 if the X Window System is missing or not being used. */
#undef X_DISPLAY_MISSING

/* Enable large inode numbers on Mac OS X 10.5.  */
#ifndef _DARWIN_USE_64_BIT_INODE
# define _DARWIN_USE_64_BIT_INODE 1
#endif

/* Number of bits in a file offset, on hosts where this is settable. */
#undef _FILE_OFFSET_BITS

/* Define for large files, on AIX-style hosts. */
#undef _LARGE_FILES

/* Define to 1 if on MINIX. */
#undef _MINIX

/* Define to 2 if the system does not provide POSIX.1 features except with
   this defined. */
#undef _POSIX_1_SOURCE

/* Define to 1 if you need to in order for `stat' and other things to work. */
#undef _POSIX_SOURCE

/* "apple doesn't follow POSIX in this case." */
#undef environ

/* 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 `unsigned int' if <sys/types.h> does not define. */
#undef size_t


#endif /* EFL_CONFIG_H__ */