don't use vfork() in wxExecute()
[wxWidgets.git] / setup.h.in
1 /* This define (__WX_SETUP_H__) is used both to ensure setup.h is included
2 * only once and to indicate that we are building using configure. */
3 #ifndef __WX_SETUP_H__
4 #define __WX_SETUP_H__
5
6 #ifdef __GNUG__
7 #pragma interface
8 #endif
9
10 /* never undefine inline or const keywords for C++ compilation */
11 #ifndef __cplusplus
12
13 /* Define to empty if the keyword does not work. */
14 #undef const
15
16 /* Define as __inline if that's what the C compiler calls it. */
17 #undef inline
18
19 #endif /* __cplusplus */
20
21 /* fill in with the string wxGetOsDescription() will return */
22 #undef WXWIN_OS_DESCRIPTION
23
24 /* the installation location prefix from configure */
25 #undef wxINSTALL_PREFIX
26
27 /* Define to `int' if <sys/types.h> doesn't define. */
28 #undef gid_t
29
30 /* Define to `int' if <sys/types.h> doesn't define. */
31 #undef mode_t
32
33 /* Define to `long' if <sys/types.h> doesn't define. */
34 #undef off_t
35
36 /* Define to `int' if <sys/types.h> doesn't define. */
37 #undef pid_t
38
39 /* Define to `unsigned' if <sys/types.h> doesn't define. */
40 #undef size_t
41
42 /* Define if you have the ANSI C header files. */
43 #undef STDC_HEADERS
44
45 /* Define this to get extra features from GNU libc. */
46 #undef _GNU_SOURCE
47
48 /* Define to `int' if <sys/types.h> doesn't define. */
49 #undef uid_t
50
51 /* Define if your processor stores words with the most significant
52 byte first (like Motorola and SPARC, unlike Intel and VAX). */
53 #undef WORDS_BIGENDIAN
54
55 /* Define this if your version of GTK+ is greater than 1.2 */
56 #undef __WXGTK12__
57
58 /* Define this if your version of GTK+ is greater than 1.2.7 */
59 #undef __WXGTK127__
60
61 /* Define this if your version of GTK+ is greater than 1.3 */
62 #undef __WXGTK20__
63
64 /*
65 * Define to 1 for Unix[-like] system
66 */
67 #define wxUSE_UNIX 0
68
69 #undef __UNIX__
70 #undef __LINUX__
71 #undef __SGI__
72 #undef __HPUX__
73 #undef __SYSV__
74 #undef __SVR4__
75 #undef __AIX__
76 #undef __SUN__
77 #undef __SOLARIS__
78 #undef __SUNOS__
79 #undef __ALPHA__
80 #undef __IA64__
81 #undef __OSF__
82 #undef __BSD__
83 #undef __FREEBSD__
84 #undef __DARWIN__
85 #undef __NETBSD__
86 #undef __VMS__
87 #undef __ULTRIX__
88 #undef __DATA_GENERAL__
89 #undef __EMX__
90
91 /* NanoX (with wxX11) */
92 #define wxUSE_NANOX 0
93
94 /* PowerPC Darwin & Mac OS X */
95 #undef __POWERPC__
96
97 /* MS-DOS with DJGPP */
98 #undef __DOS__
99
100 /* Stupid hack; __WINDOWS__ clashes with wx/defs.h */
101 #ifndef __WINDOWS__
102 #undef __WINDOWS__
103 #endif
104
105 #undef __WIN95__
106 #ifndef __WIN32__
107 #undef __WIN32__
108 #endif
109 #undef __GNUWIN32__
110 #undef STRICT
111 #undef WINVER
112
113 /* enable native status bar under Win32 */
114 #if defined(__WIN95__) && !defined(__WXUNIVERSAL__)
115 #define wxUSE_NATIVE_STATUSBAR 1
116 #define wxUSE_OWNER_DRAWN 1
117 #endif
118
119 #if defined(__WXPM__)
120 #define wxUSE_OWNER_DRAWN 1
121 #endif
122
123 /* enable rich edit under Win32 */
124 #if defined(__WIN95__) && !defined(__TWIN32__) && !defined(__GNUWIN32_OLD__)
125 #define wxUSE_RICHEDIT 1
126 #else
127 #define wxUSE_RICHEDIT 0
128 #endif
129
130 /*
131 * Supports bool type
132 */
133 #undef HAVE_BOOL
134
135 /*
136 * Define if your compiler supports the explicit keyword
137 */
138 #undef HAVE_EXPLICIT
139
140 /*
141 * Use regex support
142 */
143 #define wxUSE_REGEX 0
144 /*
145 * Use zlib
146 */
147 #define wxUSE_ZLIB 0
148 /*
149 * Use libpng
150 */
151 #define wxUSE_LIBPNG 0
152 /*
153 * Use libjpeg
154 */
155 #define wxUSE_LIBJPEG 0
156 /*
157 * Use libtiff
158 */
159 #define wxUSE_LIBTIFF 0
160 /*
161 * Use iODBC
162 */
163 #define wxUSE_ODBC 0
164 #define wxODBC_FWD_ONLY_CURSORS 1
165 #define wxODBC_BACKWARD_COMPATABILITY 0
166 /*
167 * Use freetype
168 */
169 #define wxUSE_FREETYPE 0
170 /*
171 * Use Threads
172 */
173 #define wxUSE_THREADS 0
174 /*
175 * Have glibc2
176 */
177 #define wxHAVE_GLIBC2 0
178 /*
179 * Use libXpm
180 */
181 #define wxHAVE_LIB_XPM 0
182 /*
183 * Use OpenGL
184 */
185 #define wxUSE_OPENGL 0
186 #define wxUSE_GLCANVAS 0
187
188 /*
189 * Use GUI
190 */
191 #define wxUSE_GUI 0
192 /*
193 * Don't use GUI (defined to 1 when compiling/using base only)
194 */
195 #define wxUSE_NOGUI 0
196
197 /*
198 * Catch fatal program exceptions
199 */
200 #define wxUSE_ON_FATAL_EXCEPTION 0
201
202 /*
203 * Use wxSingleInstanceChecker class
204 */
205 #define wxUSE_SNGLINST_CHECKER 0
206
207 /*
208 * Use constraints mechanism
209 */
210 #define wxUSE_CONSTRAINTS 0
211
212 /*
213 * Use validators
214 */
215 #define wxUSE_VALIDATORS 0
216
217 /*
218 * Use wxControl
219 */
220 #define wxUSE_CONTROLS 0
221
222 /*
223 Use wxPopupWindow (useful in wxUniv only for now)
224 */
225 #define wxUSE_POPUPWIN 0
226
227 /*
228 Use wxTipWindow
229 */
230 #define wxUSE_TIPWINDOW 0
231
232 /*
233 * Use accelerators
234 */
235 #define wxUSE_ACCEL 0
236
237 /*
238 * Use wxCalendarCtrl
239 */
240 #define wxUSE_CALENDARCTRL 0
241
242 /*
243 * Use wxFileDialog
244 */
245 #define wxUSE_FILEDLG 0
246
247 /*
248 * Use wxFindReplaceDialog
249 */
250 #define wxUSE_FINDREPLDLG 0
251
252 /*
253 * Use wxFontDialog
254 */
255 #define wxUSE_FONTDLG 0
256
257 /*
258 * Use wxMimeTypesManager and related classes
259 */
260 #define wxUSE_MIMETYPE 0
261
262 /*
263 * Use wxSystemOptions
264 */
265 #define wxUSE_SYSTEM_OPTIONS 0
266
267 /*
268 * Use wxMessageDialog (and wxMessageBox)
269 */
270 #define wxUSE_MSGDLG 0
271
272 /*
273 * Use wxNumberEntryDialog
274 */
275 #define wxUSE_NUMBERDLG 0
276
277 /*
278 * Use wxTextEntryDialog
279 */
280 #define wxUSE_TEXTDLG 0
281
282 /*
283 * Use startup tips
284 */
285 #define wxUSE_STARTUP_TIPS 0
286
287 /*
288 * Use progress dialog
289 */
290 #define wxUSE_PROGRESSDLG 0
291
292 /*
293 * Use chooser dialog
294 */
295 #define wxUSE_CHOICEDLG 0
296
297 /*
298 * Use colour picker dialog
299 */
300 #define wxUSE_COLOURDLG 0
301
302 /*
303 * Use directory chooser dialog
304 */
305 #define wxUSE_DIRDLG 0
306
307 /*
308 * Use wxDragImage class
309 */
310 #define wxUSE_DRAGIMAGE 0
311
312 /*
313 * Use property sheet classes
314 */
315 #define wxUSE_PROPSHEET 0
316
317 /*
318 * Use wxWizard
319 */
320 #define wxUSE_WIZARDDLG 0
321
322 /*
323 * Use splash screen
324 */
325 #define wxUSE_SPLASH 0
326
327 /*
328 * Joystick support (Linux/GTK only)
329 */
330 #define wxUSE_JOYSTICK 0
331
332 /*
333 * Use this control
334 */
335 #define wxUSE_BUTTON 0
336 /*
337 * Use this control
338 */
339 #define wxUSE_CARET 0
340 /*
341 * Use this control
342 */
343 #define wxUSE_BMPBUTTON 0
344 /*
345 * Use this control
346 */
347 #define wxUSE_CHECKBOX 0
348 /*
349 * Use this control
350 */
351 #define wxUSE_CHECKLISTBOX 0
352 /*
353 * Use this control
354 */
355 #define wxUSE_COMBOBOX 0
356 /*
357 * Use this control
358 */
359 #define wxUSE_CHOICE 0
360 /*
361 * Use this control
362 */
363 #define wxUSE_GAUGE 0
364 /*
365 * Use this control
366 */
367 #define wxUSE_GRID 0
368 /*
369 * Use this control
370 */
371 #define wxUSE_NEW_GRID 0
372 /*
373 * Use the new prototype wxGrid classes
374 * (wxUSE_GRID must also be defined)
375 */
376 #define wxUSE_IMAGLIST 0
377 /*
378 * Use this control
379 */
380 #define wxUSE_LISTBOX 0
381 /*
382 * Use this control
383 */
384 #define wxUSE_LISTCTRL 0
385 /*
386 * Use wxMenuBar, wxMenuItem and wxMenu
387 */
388 #define wxUSE_MENUS 0
389 /*
390 * Use this control
391 */
392 #define wxUSE_NOTEBOOK 0
393 /*
394 * Use this control
395 */
396 #define wxUSE_RADIOBOX 0
397 /*
398 * Use this control
399 */
400 #define wxUSE_RADIOBTN 0
401 /*
402 * Use this control
403 */
404 #define wxUSE_SASH 0
405 /*
406 * Use this control
407 */
408 #define wxUSE_SCROLLBAR 0
409 /*
410 * Use this control
411 */
412 #define wxUSE_SLIDER 0
413 /*
414 * Use this control
415 */
416 #define wxUSE_SPINBTN 0
417 /*
418 * Use this control
419 */
420 #define wxUSE_SPINCTRL 0
421 /*
422 * Use this control
423 */
424 #define wxUSE_SPLITTER 0
425 /*
426 * Use this control
427 */
428 #define wxUSE_STATBMP 0
429 /*
430 * Use this control
431 */
432 #define wxUSE_STATBOX 0
433 /*
434 * Use this control
435 */
436 #define wxUSE_STATLINE 0
437 /*
438 * Use this control
439 */
440 #define wxUSE_STATTEXT 0
441 /*
442 * Use this control
443 */
444 #define wxUSE_STATUSBAR 0
445 /*
446 * Use this control
447 */
448 #define wxUSE_TOGGLEBTN 0
449 /*
450 * Use Tab dialog class - obsolete, use wxNotebook instead
451 */
452 #define wxUSE_TAB_DIALOG 0
453 /* compatibility */
454 #define wxUSE_TABDIALOG wxUSE_TAB_DIALOG
455
456 /*
457 * Use wxTextCtrl
458 */
459 #define wxUSE_TEXTCTRL 0
460
461 /*
462 * Use wxToollBar
463 */
464 #define wxUSE_TOOLBAR 0
465
466 /*
467 * If 1, use the native toolbar, otherwise use the generic version
468 * (wxToolBarSimple) which may also be use together with the native one.
469 */
470 #define wxUSE_TOOLBAR_NATIVE 0
471
472 /*
473 * Use generic wxToolBar instead of/together with the native one?
474 */
475 #define wxUSE_TOOLBAR_SIMPLE 0
476
477 #if defined(__WXWINE__) || defined(__GNUWIN32__) || defined(__WXPM__)
478 #if wxUSE_TOOLBAR
479 #define wxUSE_BUTTONBAR 1
480 #endif
481 #endif
482
483 /*
484 * Use wxTreeLayout class
485 */
486 #define wxUSE_TREELAYOUT 0
487
488 /*
489 * Use this control
490 */
491 #define wxUSE_TREECTRL 0
492
493 /*
494 * Use wxLongLong (a.k.a. int64) class
495 */
496 #define wxUSE_LONGLONG 0
497
498 /*
499 * Use geometry classes
500 */
501 #define wxUSE_GEOMETRY 0
502
503 /*
504 * Use wxCmdLineParser class
505 */
506 #define wxUSE_CMDLINE_PARSER 0
507 /*
508 * Use wxDateTime
509 */
510 #define wxUSE_DATETIME 0
511 /*
512 * Use wxFile class
513 */
514 #define wxUSE_FILE 0
515 /*
516 * Use wxFFile class
517 */
518 #define wxUSE_FFILE 0
519 /*
520 * Use wxFSVolume class
521 */
522 #define wxUSE_FSVOLUME 1
523
524 /*
525 * Use wxTextBuffer class
526 */
527 #define wxUSE_TEXTBUFFER 0
528 /*
529 * Use wxTextFile class
530 */
531 #define wxUSE_TEXTFILE 0
532
533 /*
534 * Use log classes and logging functions
535 */
536 #define wxUSE_LOG 0
537 /*
538 * Use log window
539 */
540 #define wxUSE_LOGWINDOW 0
541 /*
542 * Use standard GUI logger
543 */
544 #define wxUSE_LOGGUI 0
545 /*
546 * Use old log dialog instead of new wxLogGui
547 */
548 #define wxUSE_LOG_DIALOG 0
549 /*
550 * Use wxStopWatch
551 */
552 #define wxUSE_STOPWATCH 0
553 /*
554 * Use time and date classes
555 */
556 #define wxUSE_TIMEDATE 0
557 /*
558 * Use wave class
559 */
560 #define wxUSE_WAVE 0
561 /*
562 * Use config system
563 */
564 #define wxUSE_CONFIG 0
565 /*
566 * Use font mapping/conversion classes
567 */
568 #define wxUSE_FONTMAP 0
569 /*
570 * Use intl system
571 */
572 #define wxUSE_INTL 0
573 /*
574 * Use wxProtocol and related classes
575 */
576 #define wxUSE_PROTOCOL 0
577 #define wxUSE_PROTOCOL_FILE 0
578 #define wxUSE_PROTOCOL_FTP 0
579 #define wxUSE_PROTOCOL_HTTP 0
580 /*
581 * Use streams
582 */
583 #define wxUSE_STREAMS 0
584 /*
585 * Use sockets
586 */
587 #define wxUSE_SOCKETS 0
588 /*
589 * Use dialup manager
590 */
591 #define wxUSE_DIALUP_MANAGER 0
592 /*
593 * Use standard C++ streams if 1. If 0, use wxWin
594 * streams implementation.
595 */
596 #define wxUSE_STD_IOSTREAM 0
597 /*
598 * wxLibrary class
599 */
600 #define wxUSE_DYNLIB_CLASS 0
601 /*
602 * Use wxObjectLoader
603 */
604 #define wxUSE_DYNAMIC_LOADER 0
605
606 /*
607 * Use wxTimer
608 */
609 #define wxUSE_TIMER 0
610
611 /*
612 * Use font metric files in GetTextExtent for wxPostScriptDC
613 * Use consistent PostScript fonts for AFM and printing (!)
614 */
615 #define wxUSE_AFM_FOR_POSTSCRIPT 0
616 #define wxUSE_NORMALIZED_PS_FONTS 0
617
618 /* compatibility */
619 #define WX_NORMALIZED_PS_FONTS wxUSE_NORMALIZED_PS_FONTS
620
621 /*
622 * Use PostScript device context
623 */
624 #define wxUSE_POSTSCRIPT 0
625
626 /*
627 * Compile wxString with some Unicode (wide character) support?
628 */
629 #define wxUSE_WCHAR_T 0
630
631 /*
632 * Compile wxWindows in Unicode mode (Win32 only for now)?
633 */
634 #define wxUSE_UNICODE 0
635
636 /*
637 * Use MS Layer for Unicode on Win9X (Win32 only)?
638 */
639 #define wxUSE_UNICODE_MSLU 0
640
641 /*
642 * Use wxURL class
643 */
644 #define wxUSE_URL 0
645
646 /*
647 * Work around a bug in GNU libc 5.x wcstombs() implementation.
648 *
649 * Note that you must link your programs with libc.a if you enable this and you
650 * have libc 5 (you should enable this for libc6 where wcsrtombs() is
651 * thread-safe version of wcstombs()).
652 */
653 #define wxUSE_WCSRTOMBS 0
654
655 /*
656 * Use the new experimental implementation of wxString::Printf()?
657 *
658 * Warning: enabling this may cause internal compiler errors with gcc!
659 */
660 #define wxUSE_EXPERIMENTAL_PRINTF 0
661
662 /*
663 * Use Interprocess communication
664 */
665 #define wxUSE_IPC 0
666 /*
667 * Use wxGetResource & wxWriteResource (change .Xdefaults)
668 */
669 #define wxUSE_X_RESOURCES 0
670 /*
671 * Use clipboard
672 */
673 #define wxUSE_CLIPBOARD 0
674 /*
675 * Use wxDataObject
676 */
677 #define wxUSE_DATAOBJ 0
678 /*
679 * Use tooltips
680 */
681 #define wxUSE_TOOLTIPS 0
682 /*
683 * Use dnd
684 */
685 #define wxUSE_DRAG_AND_DROP 0
686 /*
687 * Use OLE (MSW only)
688 */
689 #define wxUSE_OLE 0
690 /*
691 * Use spline
692 */
693 #define wxUSE_SPLINES 0
694
695 /*
696 * Use the mdi architecture
697 */
698 #define wxUSE_MDI_ARCHITECTURE 0
699 /*
700 * Use the document/view architecture
701 */
702 #define wxUSE_DOC_VIEW_ARCHITECTURE 0
703 /*
704 * Use the print/preview architecture
705 */
706 #define wxUSE_PRINTING_ARCHITECTURE 0
707
708 /*
709 * Use Prolog IO
710 */
711 #define wxUSE_PROLOGIO 0
712 /*
713 * Use wxWindows resource loading (.wxr-files) (Needs wxUSE_PROLOGIO 1)
714 */
715 #define wxUSE_RESOURCES 0
716
717 /* for compatibility */
718 #define wxUSE_WX_RESOURCES wxUSE_RESOURCES
719
720 /*
721 * Use wxWindows help facility
722 */
723 #define wxUSE_HELP 0
724 /*
725 * Use built-in HTML-based help controller
726 */
727 #define wxUSE_WXHTML_HELP 0
728 /*
729 * Use MS HTML Help controller (win32)
730 */
731 #define wxUSE_MS_HTML_HELP 0
732
733 /*
734 * Use iostream.h rather than iostream
735 */
736 #define wxUSE_IOSTREAMH 0
737 /*
738 * Use Apple Ieee-double converter
739 */
740 #define wxUSE_APPLE_IEEE 0
741 /*
742 * Compatibility with 2.0 API.
743 */
744 #define WXWIN_COMPATIBILITY_2 0
745 /*
746 * Compatibility with 2.2 API
747 */
748 #define WXWIN_COMPATIBILITY_2_2 0
749 /*
750 * Enables debugging: memory tracing, assert, etc., contains debug level
751 */
752 #define WXDEBUG 0
753 /*
754 * Enables debugging version of wxObject::new and wxObject::delete (IF WXDEBUG)
755 * WARNING: this code may not work with all architectures, especially
756 * if alignment is an issue.
757 */
758 #define wxUSE_MEMORY_TRACING 0
759 /*
760 * Enable debugging version of global memory operators new and delete
761 * Disable it, If this causes problems (e.g. link errors)
762 */
763 #define wxUSE_DEBUG_NEW_ALWAYS 0
764 /*
765 * VZ: What does this one do? (FIXME)
766 */
767 #define wxUSE_DEBUG_CONTEXT 0
768 /*
769 * In debug mode, causes new to be defined to
770 * be WXDEBUG_NEW (see object.h). If this causes
771 * problems (e.g. link errors), set this to 0.
772 */
773 #define wxUSE_GLOBAL_MEMORY_OPERATORS 0
774 /*
775 * Matthews garbage collection (used for MrEd?)
776 */
777 #define WXGARBAGE_COLLECTION_ON 0
778 /*
779 * Use splines
780 */
781 #define wxUSE_SPLINES 0
782 /*
783 * wxUSE_DYNAMIC_CLASSES is TRUE for the Xt port
784 */
785 #define wxUSE_DYNAMIC_CLASSES 1
786
787 /*
788 * Support for metafiles
789 */
790 #define wxUSE_METAFILE 0
791 #define wxUSE_ENH_METAFILE 0
792
793 /*
794 * wxMiniFrame
795 */
796 #define wxUSE_MINIFRAME 0
797
798 /*
799 * wxHTML
800 */
801 #define wxUSE_HTML 0
802
803 /*
804 * (virtual) filesystems code
805 */
806 #define wxUSE_FILESYSTEM 0
807 #define wxUSE_FS_INET 0
808 #define wxUSE_FS_ZIP 0
809
810 /*
811 * A class that shows info window when app is busy
812 * (works exactly like wxBusyCursor)
813 */
814 #define wxUSE_BUSYINFO 0
815
816 /*
817 * Zip stream for accessing files stored inside .zip archives
818 */
819 #define wxUSE_ZIPSTREAM 0
820
821 /*
822 * wxPalette class
823 */
824 #define wxUSE_PALETTE 0
825
826 /*
827 * wxImage support
828 */
829 #define wxUSE_IMAGE 0
830
831 /*
832 * GIF image format support
833 */
834 #define wxUSE_GIF 0
835
836 /*
837 * PCX image format support
838 */
839 #define wxUSE_PCX 0
840
841 /*
842 * IFF image format support
843 */
844 #define wxUSE_IFF 0
845
846 /*
847 * PNM image format support
848 */
849 #define wxUSE_PNM 0
850
851 /*
852 * XPM image format support
853 */
854 #define wxUSE_XPM 0
855
856 /*
857 * MS ICO (and CUR,ANI derivatives) image format support (on any platform)
858 */
859 #define wxUSE_ICO_CUR 0
860
861 /*
862 * Disable this if your compiler can't cope
863 * with omission of prototype parameters.
864 */
865 #define REMOVE_UNUSED_ARG 1
866 /*
867 * The const keyword is being introduced more in wxWindows.
868 * You can use this setting to maintain backward compatibility.
869 * If 0: will use const wherever possible.
870 * If 1: will use const only where necessary
871 * for precompiled headers to work.
872 * If 2: will be totally backward compatible, but precompiled
873 * headers may not work and program size will be larger.
874 */
875 #define CONST_COMPATIBILITY 0
876
877 /* define with the name of timezone variable */
878 #undef WX_TIMEZONE
879
880 /* The type of 3rd argument to getsockname() - usually size_t or int */
881 #undef SOCKLEN_T
882
883 /* The signal handler prototype */
884 #undef wxTYPE_SA_HANDLER
885
886 /* gettimeofday() usually takes 2 arguments, but some really old systems might
887 * have only one, in which case define WX_GETTIMEOFDAY_NO_TZ */
888 #undef WX_GETTIMEOFDAY_NO_TZ
889
890 /* struct tm doesn't always have the tm_gmtoff field, define this if it does */
891 #undef WX_GMTOFF_IN_TM
892
893 /* Define if you have pw_gecos field in struct passwd */
894 #undef HAVE_PW_GECOS
895
896 /* Define if you have dlopen() */
897 #undef HAVE_DLOPEN
898
899 /* Define if you have gettimeofday() */
900 #undef HAVE_GETTIMEOFDAY
901
902 /* Define if you have ftime() */
903 #undef HAVE_FTIME
904
905 /* Define if you have support for large (64 bit size) files */
906 #undef HAVE_LARGEFILE_SUPPORT
907
908 /* Required by HAVE_LARGEFILE_SUPPORT on some systems */
909 #undef _FILE_OFFSET_BITS
910
911 /* Ditto */
912 #undef _LARGE_FILES
913
914 /* Define if you have localtime() */
915 #undef HAVE_LOCALTIME
916
917 /* Define if you have nanosleep() */
918 #undef HAVE_NANOSLEEP
919
920 /* Define if you have sched_yield */
921 #undef HAVE_SCHED_YIELD
922
923 /* Define if you have pthread_mutexattr_t and functions to work with it */
924 #undef HAVE_PTHREAD_MUTEXATTR_T
925
926 /* Define if you have PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP */
927 #undef HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER
928
929 /* Define if you have pthread_cancel */
930 #undef HAVE_PTHREAD_CANCEL
931
932 /* Define if you have sigaction() */
933 #undef HAVE_SIGACTION
934
935 /* Define if you have sigemptyset() */
936 #undef HAVE_SIGEMPTYSET
937
938 /* Define if you have shl_load() */
939 #undef HAVE_SHL_LOAD
940
941 /* define if you have statfs function */
942 #undef HAVE_STATFS
943
944 /* define if you have statvfs function */
945 #undef HAVE_STATVFS
946
947 /* Define if you have strptime() */
948 #undef HAVE_STRPTIME
949
950 /* Define if you have all functions to set thread priority */
951 #undef HAVE_THREAD_PRIORITY_FUNCTIONS
952
953 /* Define if you can specify exit functions to a thread */
954 #undef HAVE_THREAD_CLEANUP_FUNCTIONS
955
956 /* Define if you have timegm() function */
957 #undef HAVE_TIMEGM
958
959 /* Define if you have vsnprintf() */
960 #undef HAVE_VSNPRINTF
961
962 /* Define if you have usleep() */
963 #undef HAVE_USLEEP
964
965 /* Define if you have wcslen function */
966 #undef HAVE_WCSLEN
967
968 /* define if you have vsscanf function */
969 #undef HAVE_VSSCANF
970
971 /* The number of bytes in a char. */
972 #undef SIZEOF_CHAR
973
974 /* The number of bytes in a wchar_t. */
975 #undef SIZEOF_WCHAR_T
976
977 /* The number of bytes in a int. */
978 #undef SIZEOF_INT
979
980 /* The number of bytes in a int *. */
981 #undef SIZEOF_INT_P
982
983 /* The number of bytes in a long. */
984 #undef SIZEOF_LONG
985
986 /* The number of bytes in a long long. */
987 #undef SIZEOF_LONG_LONG
988
989 /* The number of bytes in a short. */
990 #undef SIZEOF_SHORT
991
992 /* Define if size_t on your machine is the same type as unsigned int. */
993 #undef wxSIZE_T_IS_UINT
994
995 /* Define if size_t on your machine is the same type as unsigned long. */
996 #undef wxSIZE_T_IS_ULONG
997
998 /* Define if you have the dlopen function. */
999 #undef HAVE_DLOPEN
1000
1001 /* Define if you have the dlerror function. */
1002 #undef HAVE_DLERROR
1003
1004 /* Define if you have Posix fnctl() function. */
1005 #undef HAVE_FCNTL
1006
1007 /* Define if you have BSD flock() function. */
1008 #undef HAVE_FLOCK
1009
1010 /* Define if you have the gethostname function. */
1011 #undef HAVE_GETHOSTNAME
1012
1013 /* Define if you have the inet_addr function. */
1014 #undef HAVE_INET_ADDR
1015
1016 /* Define if you have the inet_aton function. */
1017 #undef HAVE_INET_ATON
1018
1019 /* Define if you have the mktemp function. */
1020 #undef HAVE_MKTEMP
1021
1022 /* Define if you have the mkstemp function. */
1023 #undef HAVE_MKSTEMP
1024
1025 /* Define if you have the nanosleep function. */
1026 #undef HAVE_NANOSLEEP
1027
1028 /* Define if you have the putenv function. */
1029 #undef HAVE_PUTENV
1030
1031 /* Define if you have the setenv function. */
1032 #undef HAVE_SETENV
1033
1034 /* Define if you have the shl_load function. */
1035 #undef HAVE_SHL_LOAD
1036
1037 /* Define if you have strtok_r function. */
1038 #undef HAVE_STRTOK_R
1039
1040 /* Define if you have thr_setconcurrency function */
1041 #undef HAVE_THR_SETCONCURRENCY
1042
1043 /* Define if you have the uname function. */
1044 #undef HAVE_UNAME
1045
1046 /* Define if you have the usleep function. */
1047 #undef HAVE_USLEEP
1048
1049 /* Define if you have the <X11/XKBlib.h> header file. */
1050 #undef HAVE_X11_XKBLIB_H
1051
1052 /* Define if you have the fnmatch() function */
1053 #undef HAVE_FNMATCH
1054
1055 /* Define if you have the <fnmatch.h> header file. */
1056 #undef HAVE_FNMATCH_H
1057
1058 /* Define if you have the <iostream> header file. */
1059 #undef HAVE_IOSTREAM
1060
1061 /* Define if you have the <linux/joystick.h> header file. */
1062 #undef HAVE_LINUX_JOYSTICK_H
1063
1064 /* Define if you have the <sched.h> header file. */
1065 #undef HAVE_SCHED_H
1066
1067 /* Define if you have the <strings.h> header file. */
1068 #undef HAVE_STRINGS_H
1069
1070 /* Define if you have the <unistd.h> header file. */
1071 #undef HAVE_UNISTD_H
1072
1073 /* Define if you have the <fcntl.h> header file. */
1074 #undef HAVE_FCNTL_H
1075
1076 /* Define if you have the <wchar.h> header file. */
1077 #undef HAVE_WCHAR_H
1078
1079 /* Define if you have the <wcstr.h> header file. */
1080 #undef HAVE_WCSTR_H
1081
1082 /* Define if you have the <wctype.h> header file. */
1083 #undef HAVE_WCTYPE_H
1084
1085 /* Define if you have the <iconv.h> header file and iconv() symbol. */
1086 #undef HAVE_ICONV
1087
1088 /* Define as "const" if the declaration of iconv() needs const. */
1089 #undef ICONV_CONST
1090
1091 /* Define if you have the <langinfo.h> header file. */
1092 #undef HAVE_LANGINFO_H
1093
1094 /* Define if you have the <w32api.h> header file (mingw,cygwin). */
1095 #undef HAVE_W32API_H
1096
1097 /* Define if you have wcsrtombs() function */
1098 #undef HAVE_WCSRTOMBS
1099
1100 /* Define this if you have fputws() and putwc() */
1101 #undef HAVE_FPUTWC
1102
1103 /* Define this if you have wprintf() and related functions */
1104 #undef HAVE_WPRINTF
1105
1106 /* Define this if you have wprintf() and related functions */
1107 #undef HAVE_VSWPRINTF
1108
1109 /* Define this if you are using gtk and gdk contains support for X11R6 XIM */
1110 #undef HAVE_XIM
1111
1112
1113 /* -------------------------------------------------------------------------
1114 Win32 adjustments section
1115 ------------------------------------------------------------------------- */
1116
1117 #ifdef __WIN32__
1118
1119 /* we need to define wxUSE_XPM_IN_MSW for MSW compilation for compatibility
1120 with wx/msw/setup.h */
1121 #define wxUSE_XPM_IN_MSW wxUSE_XPM
1122
1123 #endif /* __WIN32__ */
1124
1125 /* --------------------------------------------------------*
1126 * This stuff is static, it doesn't get modified directly
1127 * by configure.
1128 */
1129
1130 #include "wx/chkconf.h"
1131
1132 /*
1133 define some constants identifying wxWindows version in more details than
1134 just the version number
1135 */
1136
1137 /* wxLogChain class available */
1138 #define wxHAS_LOG_CHAIN
1139
1140 /* define this when wxDC::Blit() respects SetDeviceOrigin() in wxGTK */
1141 #undef wxHAS_WORKING_GTK_DC_BLIT
1142
1143
1144 #endif /* __WX_SETUP_H__ */
1145