]>
Commit | Line | Data |
---|---|---|
c79a329d | 1 | /* This define (__WX_SETUP_H__) is used both to ensure 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 | ||
7e67ed0d VZ |
24 | /* the installation location prefix from configure */ |
25 | #undef wxINSTALL_PREFIX | |
26 | ||
75ef19df RR |
27 | /* Define to `int' if <sys/types.h> doesn't define. */ |
28 | #undef gid_t | |
29 | ||
75ef19df RR |
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 | ||
5c0a20c3 VZ |
45 | /* Define this to get extra features from GNU libc. */ |
46 | #undef _GNU_SOURCE | |
47 | ||
75ef19df RR |
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 | ||
13111b2a | 55 | /* Define this if your version of GTK+ is greater than 1.2 */ |
75ef19df RR |
56 | #undef __WXGTK12__ |
57 | ||
f6bcfd97 BP |
58 | /* Define this if your version of GTK+ is greater than 1.2.7 */ |
59 | #undef __WXGTK127__ | |
60 | ||
13111b2a | 61 | /* Define this if your version of GTK+ is greater than 1.3 */ |
6f72b082 | 62 | #undef __WXGTK20__ |
13111b2a | 63 | |
75ef19df RR |
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__ | |
7cf43d5e | 80 | #undef __IA64__ |
75ef19df RR |
81 | #undef __OSF__ |
82 | #undef __BSD__ | |
83 | #undef __FREEBSD__ | |
8eee0251 | 84 | #undef __DARWIN__ |
f6bcfd97 | 85 | #undef __NETBSD__ |
75ef19df RR |
86 | #undef __VMS__ |
87 | #undef __ULTRIX__ | |
88 | #undef __DATA_GENERAL__ | |
89 | #undef __EMX__ | |
75ef19df | 90 | |
c79a329d JS |
91 | /* NanoX (with wxX11) */ |
92 | #define wxUSE_NANOX 0 | |
93 | ||
8eee0251 GD |
94 | /* PowerPC Darwin & Mac OS X */ |
95 | #undef __POWERPC__ | |
96 | ||
f9bc1684 VS |
97 | /* MS-DOS with DJGPP */ |
98 | #undef __DOS__ | |
99 | ||
80d895cd HH |
100 | /* Stupid hack; __WINDOWS__ clashes with wx/defs.h */ |
101 | #ifndef __WINDOWS__ | |
75ef19df | 102 | #undef __WINDOWS__ |
80d895cd HH |
103 | #endif |
104 | ||
75ef19df | 105 | #undef __WIN95__ |
0e448231 | 106 | #ifndef __WIN32__ |
75ef19df | 107 | #undef __WIN32__ |
0e448231 | 108 | #endif |
75ef19df | 109 | #undef __GNUWIN32__ |
1db46618 | 110 | #undef STRICT |
75ef19df RR |
111 | #undef WINVER |
112 | ||
7c0ea335 | 113 | /* enable native status bar under Win32 */ |
8754feb8 | 114 | #if defined(__WIN95__) && !defined(__WXUNIVERSAL__) |
7c0ea335 | 115 | #define wxUSE_NATIVE_STATUSBAR 1 |
8754feb8 | 116 | #define wxUSE_OWNER_DRAWN 1 |
7c0ea335 VZ |
117 | #endif |
118 | ||
7ee20d36 SN |
119 | #if defined(__WXPM__) |
120 | #define wxUSE_OWNER_DRAWN 1 | |
121 | #endif | |
122 | ||
e959aee2 VZ |
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 | ||
75ef19df RR |
130 | /* |
131 | * Supports bool type | |
132 | */ | |
133 | #undef HAVE_BOOL | |
134 | ||
986ecc86 VZ |
135 | /* |
136 | * Define if your compiler supports the explicit keyword | |
137 | */ | |
138 | #undef HAVE_EXPLICIT | |
139 | ||
3e44f09d VZ |
140 | /* |
141 | * Use regex support | |
142 | */ | |
143 | #define wxUSE_REGEX 0 | |
75ef19df RR |
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 | |
1c8d8d21 RR |
156 | /* |
157 | * Use libtiff | |
158 | */ | |
159 | #define wxUSE_LIBTIFF 0 | |
75ef19df RR |
160 | /* |
161 | * Use iODBC | |
162 | */ | |
163 | #define wxUSE_ODBC 0 | |
fb073f86 | 164 | #define wxODBC_FWD_ONLY_CURSORS 1 |
f6bcfd97 | 165 | #define wxODBC_BACKWARD_COMPATABILITY 0 |
3fed1840 RR |
166 | /* |
167 | * Use freetype | |
168 | */ | |
169 | #define wxUSE_FREETYPE 0 | |
75ef19df RR |
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 | |
bdad4e7e | 186 | #define wxUSE_GLCANVAS 0 |
75ef19df RR |
187 | |
188 | /* | |
189 | * Use GUI | |
190 | */ | |
e90c1d2a | 191 | #define wxUSE_GUI 0 |
75ef19df | 192 | /* |
e90c1d2a | 193 | * Don't use GUI (defined to 1 when compiling/using base only) |
75ef19df | 194 | */ |
e90c1d2a | 195 | #define wxUSE_NOGUI 0 |
75ef19df | 196 | |
eb4efbdc VZ |
197 | /* |
198 | * Catch fatal program exceptions | |
199 | */ | |
200 | #define wxUSE_ON_FATAL_EXCEPTION 0 | |
201 | ||
4f3c5f06 VZ |
202 | /* |
203 | * Use wxSingleInstanceChecker class | |
204 | */ | |
205 | #define wxUSE_SNGLINST_CHECKER 0 | |
206 | ||
75ef19df RR |
207 | /* |
208 | * Use constraints mechanism | |
209 | */ | |
210 | #define wxUSE_CONSTRAINTS 0 | |
211 | ||
212 | /* | |
213 | * Use validators | |
214 | */ | |
215 | #define wxUSE_VALIDATORS 0 | |
216 | ||
1e6feb95 VZ |
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 | ||
0b01706f VZ |
227 | /* |
228 | Use wxTipWindow | |
229 | */ | |
230 | #define wxUSE_TIPWINDOW 0 | |
231 | ||
75ef19df RR |
232 | /* |
233 | * Use accelerators | |
234 | */ | |
235 | #define wxUSE_ACCEL 0 | |
236 | ||
1e6feb95 VZ |
237 | /* |
238 | * Use wxCalendarCtrl | |
239 | */ | |
240 | #define wxUSE_CALENDARCTRL 0 | |
241 | ||
242 | /* | |
243 | * Use wxFileDialog | |
244 | */ | |
245 | #define wxUSE_FILEDLG 0 | |
246 | ||
8db37e06 VZ |
247 | /* |
248 | * Use wxFindReplaceDialog | |
249 | */ | |
250 | #define wxUSE_FINDREPLDLG 0 | |
251 | ||
1e6feb95 VZ |
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 | ||
04eb894b GD |
262 | /* |
263 | * Use wxSystemOptions | |
264 | */ | |
265 | #define wxUSE_SYSTEM_OPTIONS 0 | |
266 | ||
1e6feb95 VZ |
267 | /* |
268 | * Use wxMessageDialog (and wxMessageBox) | |
269 | */ | |
270 | #define wxUSE_MSGDLG 0 | |
271 | ||
272 | /* | |
273 | * Use wxNumberEntryDialog | |
274 | */ | |
275 | #define wxUSE_NUMBERDLG 0 | |
276 | ||
75ef19df RR |
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 | ||
1e6feb95 VZ |
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 | ||
75ef19df RR |
302 | /* |
303 | * Use directory chooser dialog | |
304 | */ | |
305 | #define wxUSE_DIRDLG 0 | |
306 | ||
24fd6d87 VZ |
307 | /* |
308 | * Use wxDragImage class | |
309 | */ | |
310 | #define wxUSE_DRAGIMAGE 0 | |
311 | ||
1e6feb95 VZ |
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 | ||
75ef19df RR |
327 | /* |
328 | * Joystick support (Linux/GTK only) | |
329 | */ | |
330 | #define wxUSE_JOYSTICK 0 | |
331 | ||
1e6feb95 VZ |
332 | /* |
333 | * Use this control | |
334 | */ | |
335 | #define wxUSE_BUTTON 0 | |
75ef19df RR |
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 | */ | |
f85afd4e MB |
371 | #define wxUSE_NEW_GRID 0 |
372 | /* | |
373 | * Use the new prototype wxGrid classes | |
374 | * (wxUSE_GRID must also be defined) | |
375 | */ | |
75ef19df RR |
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 | |
1e6feb95 VZ |
385 | /* |
386 | * Use wxMenuBar, wxMenuItem and wxMenu | |
387 | */ | |
388 | #define wxUSE_MENUS 0 | |
75ef19df RR |
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 | |
63081513 RR |
417 | /* |
418 | * Use this control | |
419 | */ | |
420 | #define wxUSE_SPINCTRL 0 | |
75ef19df RR |
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 | */ | |
1e6feb95 VZ |
440 | #define wxUSE_STATTEXT 0 |
441 | /* | |
442 | * Use this control | |
443 | */ | |
444 | #define wxUSE_STATUSBAR 0 | |
1db8dc4a VZ |
445 | /* |
446 | * Use this control | |
447 | */ | |
448 | #define wxUSE_TOGGLEBTN 0 | |
75ef19df RR |
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 | |
b685cd9b | 455 | |
1e6feb95 VZ |
456 | /* |
457 | * Use wxTextCtrl | |
458 | */ | |
459 | #define wxUSE_TEXTCTRL 0 | |
460 | ||
b685cd9b | 461 | /* |
360d6699 | 462 | * Use wxToollBar |
b685cd9b | 463 | */ |
360d6699 | 464 | #define wxUSE_TOOLBAR 0 |
b685cd9b | 465 | |
75ef19df | 466 | /* |
360d6699 VZ |
467 | * If 1, use the native toolbar, otherwise use the generic version |
468 | * (wxToolBarSimple) which may also be use together with the native one. | |
75ef19df | 469 | */ |
360d6699 VZ |
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 | |
75ef19df | 476 | |
749aa5c1 | 477 | #if defined(__WXWINE__) || defined(__GNUWIN32__) || defined(__WXPM__) |
75ef19df RR |
478 | #if wxUSE_TOOLBAR |
479 | #define wxUSE_BUTTONBAR 1 | |
480 | #endif | |
481 | #endif | |
482 | ||
bfde68e4 GD |
483 | /* |
484 | * Use wxTreeLayout class | |
485 | */ | |
486 | #define wxUSE_TREELAYOUT 0 | |
487 | ||
75ef19df RR |
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 | ||
44f889cb RR |
498 | /* |
499 | * Use geometry classes | |
500 | */ | |
501 | #define wxUSE_GEOMETRY 0 | |
502 | ||
1e6feb95 VZ |
503 | /* |
504 | * Use wxCmdLineParser class | |
505 | */ | |
506 | #define wxUSE_CMDLINE_PARSER 0 | |
507 | /* | |
508 | * Use wxDateTime | |
509 | */ | |
510 | #define wxUSE_DATETIME 0 | |
75ef19df RR |
511 | /* |
512 | * Use wxFile class | |
513 | */ | |
514 | #define wxUSE_FILE 0 | |
1e6feb95 VZ |
515 | /* |
516 | * Use wxFFile class | |
517 | */ | |
518 | #define wxUSE_FFILE 0 | |
05815ab3 VZ |
519 | /* |
520 | * Use wxFSVolume class | |
521 | */ | |
522 | #define wxUSE_FSVOLUME 1 | |
523 | ||
a3a584a7 VZ |
524 | /* |
525 | * Use wxTextBuffer class | |
526 | */ | |
527 | #define wxUSE_TEXTBUFFER 0 | |
75ef19df RR |
528 | /* |
529 | * Use wxTextFile class | |
530 | */ | |
531 | #define wxUSE_TEXTFILE 0 | |
44f889cb | 532 | |
75ef19df RR |
533 | /* |
534 | * Use log classes and logging functions | |
535 | */ | |
536 | #define wxUSE_LOG 0 | |
1e6feb95 VZ |
537 | /* |
538 | * Use log window | |
539 | */ | |
540 | #define wxUSE_LOGWINDOW 0 | |
541 | /* | |
542 | * Use standard GUI logger | |
543 | */ | |
544 | #define wxUSE_LOGGUI 0 | |
dcb99cd3 VZ |
545 | /* |
546 | * Use old log dialog instead of new wxLogGui | |
547 | */ | |
69d27ff7 | 548 | #define wxUSE_LOG_DIALOG 0 |
1e6feb95 VZ |
549 | /* |
550 | * Use wxStopWatch | |
551 | */ | |
552 | #define wxUSE_STOPWATCH 0 | |
75ef19df RR |
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 | |
1e6feb95 VZ |
565 | /* |
566 | * Use font mapping/conversion classes | |
567 | */ | |
568 | #define wxUSE_FONTMAP 0 | |
75ef19df RR |
569 | /* |
570 | * Use intl system | |
571 | */ | |
572 | #define wxUSE_INTL 0 | |
a5d46b73 VZ |
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 | |
75ef19df RR |
580 | /* |
581 | * Use streams | |
582 | */ | |
583 | #define wxUSE_STREAMS 0 | |
75ef19df RR |
584 | /* |
585 | * Use sockets | |
586 | */ | |
587 | #define wxUSE_SOCKETS 0 | |
1c8515f9 KB |
588 | /* |
589 | * Use dialup manager | |
590 | */ | |
591 | #define wxUSE_DIALUP_MANAGER 0 | |
75ef19df RR |
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 | |
0b9ab0bd RL |
601 | /* |
602 | * Use wxObjectLoader | |
603 | */ | |
604 | #define wxUSE_DYNAMIC_LOADER 0 | |
75ef19df | 605 | |
1e6feb95 VZ |
606 | /* |
607 | * Use wxTimer | |
608 | */ | |
609 | #define wxUSE_TIMER 0 | |
610 | ||
75ef19df RR |
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 | /* | |
f6bcfd97 | 627 | * Compile wxString with some Unicode (wide character) support? |
e90c1d2a VZ |
628 | */ |
629 | #define wxUSE_WCHAR_T 0 | |
630 | ||
631 | /* | |
f6bcfd97 | 632 | * Compile wxWindows in Unicode mode (Win32 only for now)? |
75ef19df RR |
633 | */ |
634 | #define wxUSE_UNICODE 0 | |
635 | ||
db3272a0 VS |
636 | /* |
637 | * Use MS Layer for Unicode on Win9X (Win32 only)? | |
638 | */ | |
639 | #define wxUSE_UNICODE_MSLU 0 | |
640 | ||
a5d46b73 VZ |
641 | /* |
642 | * Use wxURL class | |
643 | */ | |
644 | #define wxUSE_URL 0 | |
645 | ||
75ef19df RR |
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 | ||
75ef19df RR |
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 | |
1e6feb95 VZ |
674 | /* |
675 | * Use wxDataObject | |
676 | */ | |
677 | #define wxUSE_DATAOBJ 0 | |
75ef19df RR |
678 | /* |
679 | * Use tooltips | |
680 | */ | |
681 | #define wxUSE_TOOLTIPS 0 | |
682 | /* | |
683 | * Use dnd | |
684 | */ | |
685 | #define wxUSE_DRAG_AND_DROP 0 | |
9165395f VS |
686 | /* |
687 | * Use OLE (MSW only) | |
688 | */ | |
689 | #define wxUSE_OLE 0 | |
75ef19df RR |
690 | /* |
691 | * Use spline | |
692 | */ | |
693 | #define wxUSE_SPLINES 0 | |
75ef19df RR |
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 | /* | |
3379ed37 | 721 | * Use wxWindows help facility |
75ef19df RR |
722 | */ |
723 | #define wxUSE_HELP 0 | |
3379ed37 VZ |
724 | /* |
725 | * Use built-in HTML-based help controller | |
726 | */ | |
727 | #define wxUSE_WXHTML_HELP 0 | |
29fd3c0c VS |
728 | /* |
729 | * Use MS HTML Help controller (win32) | |
730 | */ | |
731 | #define wxUSE_MS_HTML_HELP 0 | |
3379ed37 | 732 | |
75ef19df RR |
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 | |
97c79de2 RR |
741 | /* |
742 | * Compatibility with 2.0 API. | |
743 | */ | |
54276ccf VZ |
744 | #define WXWIN_COMPATIBILITY_2 0 |
745 | /* | |
746 | * Compatibility with 2.2 API | |
747 | */ | |
748 | #define WXWIN_COMPATIBILITY_2_2 0 | |
75ef19df RR |
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 | |
b64f0a5f | 791 | #define wxUSE_ENH_METAFILE 0 |
75ef19df RR |
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 | */ | |
24528b0c | 806 | #define wxUSE_FILESYSTEM 0 |
75ef19df RR |
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 | */ | |
1db8dc4a | 814 | #define wxUSE_BUSYINFO 0 |
75ef19df RR |
815 | |
816 | /* | |
817 | * Zip stream for accessing files stored inside .zip archives | |
818 | */ | |
819 | #define wxUSE_ZIPSTREAM 0 | |
820 | ||
d275c7eb VZ |
821 | /* |
822 | * wxPalette class | |
823 | */ | |
824 | #define wxUSE_PALETTE 0 | |
825 | ||
0046ff7c VS |
826 | /* |
827 | * wxImage support | |
828 | */ | |
829 | #define wxUSE_IMAGE 0 | |
830 | ||
0940bcf7 HH |
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 | ||
4b6b4dfc RR |
841 | /* |
842 | * IFF image format support | |
843 | */ | |
844 | #define wxUSE_IFF 0 | |
845 | ||
0940bcf7 HH |
846 | /* |
847 | * PNM image format support | |
848 | */ | |
849 | #define wxUSE_PNM 0 | |
1db8dc4a | 850 | |
0046ff7c VS |
851 | /* |
852 | * XPM image format support | |
853 | */ | |
854 | #define wxUSE_XPM 0 | |
855 | ||
36e80997 | 856 | /* |
f9a03a02 | 857 | * MS ICO (and CUR,ANI derivatives) image format support (on any platform) |
36e80997 GD |
858 | */ |
859 | #define wxUSE_ICO_CUR 0 | |
860 | ||
75ef19df RR |
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 | ||
360d6699 VZ |
877 | /* define with the name of timezone variable */ |
878 | #undef WX_TIMEZONE | |
879 | ||
75ef19df RR |
880 | /* The type of 3rd argument to getsockname() - usually size_t or int */ |
881 | #undef SOCKLEN_T | |
882 | ||
f6bcfd97 BP |
883 | /* The signal handler prototype */ |
884 | #undef wxTYPE_SA_HANDLER | |
885 | ||
afc31813 VZ |
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 | ||
0470b1e6 VZ |
890 | /* struct tm doesn't always have the tm_gmtoff field, define this if it does */ |
891 | #undef WX_GMTOFF_IN_TM | |
892 | ||
bd3277fe VZ |
893 | /* Define if you have pw_gecos field in struct passwd */ |
894 | #undef HAVE_PW_GECOS | |
895 | ||
75ef19df RR |
896 | /* Define if you have dlopen() */ |
897 | #undef HAVE_DLOPEN | |
898 | ||
afc31813 VZ |
899 | /* Define if you have gettimeofday() */ |
900 | #undef HAVE_GETTIMEOFDAY | |
901 | ||
902 | /* Define if you have ftime() */ | |
903 | #undef HAVE_FTIME | |
904 | ||
90dd450c VZ |
905 | /* Define if you have support for large (64 bit size) files */ |
906 | #undef HAVE_LARGEFILE_SUPPORT | |
907 | ||
35dcf132 VZ |
908 | /* Required by HAVE_LARGEFILE_SUPPORT on some systems */ |
909 | #undef _FILE_OFFSET_BITS | |
910 | ||
911 | /* Ditto */ | |
912 | #undef _LARGE_FILES | |
913 | ||
afc31813 VZ |
914 | /* Define if you have localtime() */ |
915 | #undef HAVE_LOCALTIME | |
916 | ||
75ef19df RR |
917 | /* Define if you have nanosleep() */ |
918 | #undef HAVE_NANOSLEEP | |
919 | ||
920 | /* Define if you have sched_yield */ | |
921 | #undef HAVE_SCHED_YIELD | |
922 | ||
d9b9876f VZ |
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 | ||
75ef19df RR |
929 | /* Define if you have pthread_cancel */ |
930 | #undef HAVE_PTHREAD_CANCEL | |
931 | ||
eb4efbdc VZ |
932 | /* Define if you have sigaction() */ |
933 | #undef HAVE_SIGACTION | |
934 | ||
935 | /* Define if you have sigemptyset() */ | |
936 | #undef HAVE_SIGEMPTYSET | |
937 | ||
270a909e VZ |
938 | /* Define if you have shl_load() */ |
939 | #undef HAVE_SHL_LOAD | |
940 | ||
52e8b690 VZ |
941 | /* define if you have statfs function */ |
942 | #undef HAVE_STATFS | |
943 | ||
9952adac VZ |
944 | /* define if you have statvfs function */ |
945 | #undef HAVE_STATVFS | |
946 | ||
83307f33 VZ |
947 | /* Define if you have strptime() */ |
948 | #undef HAVE_STRPTIME | |
949 | ||
75ef19df RR |
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 | ||
270a909e VZ |
956 | /* Define if you have timegm() function */ |
957 | #undef HAVE_TIMEGM | |
75ef19df RR |
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 | ||
6f72b082 OK |
974 | /* The number of bytes in a wchar_t. */ |
975 | #undef SIZEOF_WCHAR_T | |
976 | ||
75ef19df RR |
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 | ||
d836ee96 VZ |
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 | ||
75ef19df RR |
998 | /* Define if you have the dlopen function. */ |
999 | #undef HAVE_DLOPEN | |
1000 | ||
f6bcfd97 BP |
1001 | /* Define if you have the dlerror function. */ |
1002 | #undef HAVE_DLERROR | |
1003 | ||
4f3c5f06 VZ |
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 | ||
75ef19df RR |
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 | ||
ade35f11 VZ |
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 | ||
75ef19df RR |
1025 | /* Define if you have the nanosleep function. */ |
1026 | #undef HAVE_NANOSLEEP | |
1027 | ||
8fd0d89b VZ |
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 | ||
75ef19df RR |
1034 | /* Define if you have the shl_load function. */ |
1035 | #undef HAVE_SHL_LOAD | |
1036 | ||
e90c1d2a VZ |
1037 | /* Define if you have strtok_r function. */ |
1038 | #undef HAVE_STRTOK_R | |
1039 | ||
9ec64fa7 | 1040 | /* Define if you have thr_setconcurrency function */ |
eb4efbdc | 1041 | #undef HAVE_THR_SETCONCURRENCY |
9ec64fa7 | 1042 | |
75ef19df RR |
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 vfork function. */ | |
1050 | #undef HAVE_VFORK | |
1051 | ||
75ef19df RR |
1052 | /* Define if you have the <X11/XKBlib.h> header file. */ |
1053 | #undef HAVE_X11_XKBLIB_H | |
1054 | ||
f530f862 VZ |
1055 | /* Define if you have the fnmatch() function */ |
1056 | #undef HAVE_FNMATCH | |
1057 | ||
75ef19df RR |
1058 | /* Define if you have the <fnmatch.h> header file. */ |
1059 | #undef HAVE_FNMATCH_H | |
1060 | ||
1061 | /* Define if you have the <iostream> header file. */ | |
1062 | #undef HAVE_IOSTREAM | |
1063 | ||
1064 | /* Define if you have the <linux/joystick.h> header file. */ | |
1065 | #undef HAVE_LINUX_JOYSTICK_H | |
1066 | ||
1067 | /* Define if you have the <sched.h> header file. */ | |
1068 | #undef HAVE_SCHED_H | |
1069 | ||
1070 | /* Define if you have the <strings.h> header file. */ | |
1071 | #undef HAVE_STRINGS_H | |
1072 | ||
1073 | /* Define if you have the <unistd.h> header file. */ | |
1074 | #undef HAVE_UNISTD_H | |
1075 | ||
0fb0dd83 RR |
1076 | /* Define if you have the <fcntl.h> header file. */ |
1077 | #undef HAVE_FCNTL_H | |
1078 | ||
75ef19df RR |
1079 | /* Define if you have the <wchar.h> header file. */ |
1080 | #undef HAVE_WCHAR_H | |
1081 | ||
1082 | /* Define if you have the <wcstr.h> header file. */ | |
1083 | #undef HAVE_WCSTR_H | |
1084 | ||
0fbb762e MB |
1085 | /* Define if you have the <wctype.h> header file. */ |
1086 | #undef HAVE_WCTYPE_H | |
1087 | ||
b040e242 VS |
1088 | /* Define if you have the <iconv.h> header file and iconv() symbol. */ |
1089 | #undef HAVE_ICONV | |
6f72b082 | 1090 | |
b040e242 VS |
1091 | /* Define as "const" if the declaration of iconv() needs const. */ |
1092 | #undef ICONV_CONST | |
29f45f85 | 1093 | |
6f72b082 OK |
1094 | /* Define if you have the <langinfo.h> header file. */ |
1095 | #undef HAVE_LANGINFO_H | |
1096 | ||
d4158b5d VS |
1097 | /* Define if you have the <w32api.h> header file (mingw,cygwin). */ |
1098 | #undef HAVE_W32API_H | |
1099 | ||
b3e8d00a VZ |
1100 | /* Define if you have wcsrtombs() function */ |
1101 | #undef HAVE_WCSRTOMBS | |
1102 | ||
d74f4b5a VZ |
1103 | /* Define this if you have fputws() and putwc() */ |
1104 | #undef HAVE_FPUTWC | |
1105 | ||
1106 | /* Define this if you have wprintf() and related functions */ | |
1107 | #undef HAVE_WPRINTF | |
1108 | ||
5c6fa7d2 RR |
1109 | /* Define this if you have wprintf() and related functions */ |
1110 | #undef HAVE_VSWPRINTF | |
1111 | ||
7799a2d7 | 1112 | /* Define this if you are using gtk and gdk contains support for X11R6 XIM */ |
d84b26a7 | 1113 | #undef HAVE_XIM |
7799a2d7 | 1114 | |
3a922bb4 | 1115 | |
1d65a68f VZ |
1116 | /* ------------------------------------------------------------------------- |
1117 | Win32 adjustments section | |
1118 | ------------------------------------------------------------------------- */ | |
1119 | ||
1120 | #ifdef __WIN32__ | |
1121 | ||
1122 | /* we need to define wxUSE_XPM_IN_MSW for MSW compilation for compatibility | |
1123 | with wx/msw/setup.h */ | |
1124 | #define wxUSE_XPM_IN_MSW wxUSE_XPM | |
1125 | ||
1126 | #endif /* __WIN32__ */ | |
1127 | ||
3a922bb4 RL |
1128 | /* --------------------------------------------------------* |
1129 | * This stuff is static, it doesn't get modified directly | |
1130 | * by configure. | |
1131 | */ | |
1132 | ||
1133 | #include "wx/chkconf.h" | |
1134 | ||
1135 | /* | |
1136 | define some constants identifying wxWindows version in more details than | |
1137 | just the version number | |
1138 | */ | |
1139 | ||
1140 | /* wxLogChain class available */ | |
1141 | #define wxHAS_LOG_CHAIN | |
1142 | ||
1143 | /* define this when wxDC::Blit() respects SetDeviceOrigin() in wxGTK */ | |
1144 | #undef wxHAS_WORKING_GTK_DC_BLIT | |
1145 | ||
1146 | ||
75ef19df | 1147 | #endif /* __WX_SETUP_H__ */ |
3a922bb4 | 1148 |