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