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