ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/config.h.in
Revision: 1.11
Committed: Fri Jun 8 20:04:10 2007 UTC (16 years, 11 months ago) by sasha
Branch: MAIN
Changes since 1.10: +8 -1 lines
Log Message:
added preliminary support to use libAfterImage for background pixmap loading and rendering of transparency effects including blending of pixmap over background using several methods, and gaussian blurr of the transparency background

File Contents

# User Rev Content
1 ayin 1.1 /* config.h.in. Generated from configure.ac by autoheader. */
2    
3 sasha 1.11 /* Define if you want to integrate with AfterStep window manager */
4     #undef AFTERSTEP_INTEGRATION
5    
6 root 1.5 /* clone device filename */
7     #undef CLONE_DEVICE
8    
9 ayin 1.1 /* Define if you want 8 bit control sequences */
10     #undef EIGHT_BIT_CONTROLS
11    
12     /* Define if you want to automatically compose combining characters */
13     #undef ENABLE_COMBINING
14    
15     /* Define if you want handling for rarely used but handy features */
16     #undef ENABLE_FRILLS
17    
18     /* Define if you can embed a perl interpreter */
19     #undef ENABLE_PERL
20    
21     /* Define if you want bold and italic support */
22     #undef ENABLE_STYLES
23    
24     /* Define if you want european extended codesets */
25     #undef ENCODING_EU
26    
27     /* Define if you want japanese codesets */
28     #undef ENCODING_JP
29    
30     /* Define if you want extended japanese codesets */
31     #undef ENCODING_JP_EXT
32    
33     /* Define if you want korean codesets */
34     #undef ENCODING_KR
35    
36     /* Define if you want vietnamese codesets */
37     #undef ENCODING_VN
38    
39     /* Define if you want chinese codesets */
40     #undef ENCODING_ZH
41    
42     /* Define if you want extended chinese codesets */
43     #undef ENCODING_ZH_EXT
44    
45 sasha 1.11 /* Define if you want to use libAfterImage for image processing */
46     #undef HAVE_AFTERIMAGE
47    
48 ayin 1.1 /* Define to 1 if you have the <assert.h> header file. */
49     #undef HAVE_ASSERT_H
50    
51     /* Define to 1 if you have the <clocale> header file. */
52     #undef HAVE_CLOCALE
53    
54     /* Define to 1 if you have the <cwchar> header file. */
55     #undef HAVE_CWCHAR
56    
57 root 1.5 /* Define to 1 if you have /dev/ptym/clone */
58     #undef HAVE_DEV_CLONE
59    
60     /* Define to 1 if you have /dev/ptc */
61     #undef HAVE_DEV_PTC
62    
63     /* Define to 1 if you have /dev/ptmx */
64     #undef HAVE_DEV_PTMX
65    
66 ayin 1.1 /* Define to 1 if you have the <fcntl.h> header file. */
67     #undef HAVE_FCNTL_H
68    
69 root 1.5 /* Define to 1 if you have the `getpt' function. */
70     #undef HAVE_GETPT
71    
72 ayin 1.1 /* Define to 1 if you have the <inttypes.h> header file. */
73     #undef HAVE_INTTYPES_H
74    
75 root 1.5 /* Define to 1 if you have the `isastream' function. */
76     #undef HAVE_ISASTREAM
77    
78     /* Define to 1 if you have the <lastlog.h> header file. */
79     #undef HAVE_LASTLOG_H
80    
81     /* Define to 1 if you have the <libutil.h> header file. */
82     #undef HAVE_LIBUTIL_H
83    
84 ayin 1.1 /* Define to 1 if you have the `Xft' library (-lXft). */
85     #undef HAVE_LIBXFT
86    
87     /* Define to 1 if you have the <memory.h> header file. */
88     #undef HAVE_MEMORY_H
89    
90     /* Define if nl_langinfo(CODESET) works */
91     #undef HAVE_NL_LANGINFO
92    
93     /* Define to 1 if you have the `on_exit' function. */
94     #undef HAVE_ON_EXIT
95    
96 root 1.5 /* Define to 1 if you have the `openpty' function. */
97     #undef HAVE_OPENPTY
98    
99     /* Define to 1 if you have the `posix_openpt' function. */
100     #undef HAVE_POSIX_OPENPT
101    
102     /* Define to 1 if you have the <pty.h> header file. */
103     #undef HAVE_PTY_H
104    
105     /* Define to 1 if you have the `revoke' function. */
106     #undef HAVE_REVOKE
107    
108 ayin 1.1 /* Define to 1 if you have the `seteuid' function. */
109     #undef HAVE_SETEUID
110    
111     /* Define if plain old setlocale works */
112     #undef HAVE_SETLOCALE
113    
114     /* Define to 1 if you have the `setresuid' function. */
115     #undef HAVE_SETRESUID
116    
117     /* Define to 1 if you have the `setreuid' function. */
118     #undef HAVE_SETREUID
119    
120 root 1.8 /* Define to 1 if you have the `setuid' function. */
121     #undef HAVE_SETUID
122    
123 ayin 1.1 /* Define to 1 if you have the `setutent' function. */
124     #undef HAVE_SETUTENT
125    
126     /* Define to 1 if you have the <stdarg.h> header file. */
127     #undef HAVE_STDARG_H
128    
129     /* Define to 1 if you have the <stdint.h> header file. */
130     #undef HAVE_STDINT_H
131    
132     /* Define to 1 if you have the <stdlib.h> header file. */
133     #undef HAVE_STDLIB_H
134    
135     /* Define to 1 if you have the <strings.h> header file. */
136     #undef HAVE_STRINGS_H
137    
138     /* Define to 1 if you have the <string.h> header file. */
139     #undef HAVE_STRING_H
140    
141 root 1.5 /* Define if utmp.h or lastlog.h has struct lastlog */
142     #undef HAVE_STRUCT_LASTLOG
143    
144     /* Define if utmpx.h or lastlog.h has struct lastlogx */
145     #undef HAVE_STRUCT_LASTLOGX
146    
147     /* Define if utmp.h has struct utmp */
148     #undef HAVE_STRUCT_UTMP
149    
150     /* Define if utmpx.h has struct utmpx */
151     #undef HAVE_STRUCT_UTMPX
152    
153 ayin 1.1 /* Define to 1 if you have the <sys/byteorder.h> header file. */
154     #undef HAVE_SYS_BYTEORDER_H
155    
156     /* Define to 1 if you have the <sys/ioctl.h> header file. */
157     #undef HAVE_SYS_IOCTL_H
158    
159     /* Define to 1 if you have the <sys/select.h> header file. */
160     #undef HAVE_SYS_SELECT_H
161    
162     /* Define to 1 if you have the <sys/sockio.h> header file. */
163     #undef HAVE_SYS_SOCKIO_H
164    
165     /* Define to 1 if you have the <sys/stat.h> header file. */
166     #undef HAVE_SYS_STAT_H
167    
168 root 1.5 /* Define to 1 if you have the <sys/stropts.h> header file. */
169     #undef HAVE_SYS_STROPTS_H
170    
171 ayin 1.1 /* Define to 1 if you have the <sys/strredir.h> header file. */
172     #undef HAVE_SYS_STRREDIR_H
173    
174     /* Define to 1 if you have the <sys/time.h> header file. */
175     #undef HAVE_SYS_TIME_H
176    
177     /* Define to 1 if you have the <sys/types.h> header file. */
178     #undef HAVE_SYS_TYPES_H
179    
180     /* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
181     #undef HAVE_SYS_WAIT_H
182    
183     /* Define to 1 if you have the <termios.h> header file. */
184     #undef HAVE_TERMIOS_H
185    
186 root 1.5 /* Define to 1 if you have the `ttyslot' function. */
187     #undef HAVE_TTYSLOT
188    
189 ayin 1.1 /* Define to 1 if you have the <unistd.h> header file. */
190     #undef HAVE_UNISTD_H
191    
192 root 1.5 /* Define if sys/socket.h defines the necessary macros/functions for file
193     handle passing */
194     #undef HAVE_UNIX_FDPASS
195    
196 ayin 1.1 /* Define to 1 if you have the `unsetenv' function. */
197     #undef HAVE_UNSETENV
198    
199 root 1.5 /* Define to 1 if you have the `updwtmp' function. */
200     #undef HAVE_UPDWTMP
201    
202     /* Define to 1 if you have the `updwtmpx' function. */
203     #undef HAVE_UPDWTMPX
204    
205     /* Define to 1 if you have the <util.h> header file. */
206     #undef HAVE_UTIL_H
207    
208     /* Define to 1 if you have the <utmpx.h> header file. */
209     #undef HAVE_UTMPX_H
210    
211     /* Define if struct utmpx contains ut_host */
212     #undef HAVE_UTMPX_HOST
213    
214     /* Define if struct utmpx contains ut_session */
215     #undef HAVE_UTMPX_SESSION
216    
217     /* Define to 1 if you have the <utmp.h> header file. */
218     #undef HAVE_UTMP_H
219    
220     /* Define if struct utmp contains ut_host */
221     #undef HAVE_UTMP_HOST
222    
223     /* Define if struct utmp contains ut_pid */
224     #undef HAVE_UTMP_PID
225    
226 ayin 1.1 /* Define to 1 if you have the <wchar.h> header file. */
227     #undef HAVE_WCHAR_H
228    
229     /* Define to 1 if you have the <X11/Xft/Xft.h> header file. */
230     #undef HAVE_X11_XFT_XFT_H
231    
232     /* Define if Xlocale support works */
233     #undef HAVE_XLOCALE
234    
235     /* Define if you have XPointer typedef */
236     #undef HAVE_XPOINTER
237    
238     /* Define if setlocale (defined to Xsetlocale) works */
239     #undef HAVE_XSETLOCALE
240    
241 root 1.5 /* Define to 1 if you have the `_getpty' function. */
242     #undef HAVE__GETPTY
243    
244 ayin 1.1 /* Define if you want ISO 14755 extended support */
245     #undef ISO_14755
246    
247 root 1.5 /* Define location of lastlogx */
248     #undef LASTLOGX_FILE
249    
250     /* Define location of lastlog */
251     #undef LASTLOG_FILE
252    
253     /* Define if lastlog is provided via a directory */
254     #undef LASTLOG_IS_DIR
255    
256 ayin 1.1 /* Define if you want to have lastlog support when utmp/utmpx is enabled */
257     #undef LASTLOG_SUPPORT
258    
259     /* Build shared library version - specify via configure only */
260     #undef LIBRXVT
261    
262     /* Define to have CTRL cause wheel events to accelerate scrolling. Release
263     CTRL to halt scrolling */
264     #undef MOUSE_SLIP_WHEELING
265    
266     /* Define to use wheel events (button4 and button5) to scroll */
267     #undef MOUSE_WHEEL
268    
269     /* Support NeXT style scrollbars */
270     #undef NEXT_SCROLLBAR
271    
272     /* Define if you don't want support for the backspace key */
273     #undef NO_BACKSPACE_KEY
274    
275     /* Define if you don't want support for the (non-keypad) delete key */
276     #undef NO_DELETE_KEY
277    
278     /* Define if you don't want any resources read */
279     #undef NO_RESOURCES
280    
281     /* Define for continual scrolling when you keep the scrollbar button pressed
282     */
283     #undef NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING
284    
285     /* Disable the secondary screen. Many programs use the secondary screen as
286     their workplace */
287     #undef NO_SECONDARY_SCREEN
288    
289     /* Define if you want faded colors when focus is lost */
290     #undef OFF_FOCUS_FADING
291    
292     /* Define to the address where bug reports for this package should be sent. */
293     #undef PACKAGE_BUGREPORT
294    
295     /* Define to the full name of this package. */
296     #undef PACKAGE_NAME
297    
298     /* Define to the full name and version of this package. */
299     #undef PACKAGE_STRING
300    
301     /* Define to the one symbol short name of this package. */
302     #undef PACKAGE_TARNAME
303    
304     /* Define to the version of this package. */
305     #undef PACKAGE_VERSION
306    
307     /* Support plain style scrollbars */
308     #undef PLAIN_SCROLLBAR
309    
310     /* Define if you want hide the pointer while typing */
311     #undef POINTER_BLANK
312    
313     /* Resource class */
314     #undef RESCLASS
315    
316     /* Fallback resource class */
317     #undef RESFALLBACK
318    
319     /* Default resource name */
320     #undef RESNAME
321    
322     /* Define as the return type of signal handlers (`int' or `void'). */
323     #undef RETSIGTYPE
324    
325     /* Binary base name */
326     #undef RXVTNAME
327    
328     /* Support Rxvt original style scrollbars */
329     #undef RXVT_SCROLLBAR
330    
331     /* Set TERMINFO value to the value given by configure */
332     #undef RXVT_TERMINFO
333    
334     /* Define to allow scrolling when the selection moves to the top or bottom of
335     the screen */
336     #undef SELECTION_SCROLLING
337    
338     /* The size of a `int', as computed by sizeof. */
339     #undef SIZEOF_INT
340    
341     /* The size of a `int *', as computed by sizeof. */
342     #undef SIZEOF_INT_P
343    
344     /* The size of a `long long', as computed by sizeof. */
345     #undef SIZEOF_LONG_LONG
346    
347     /* The size of a `short', as computed by sizeof. */
348     #undef SIZEOF_SHORT
349    
350     /* Define to use "smart" resize behavior */
351     #undef SMART_RESIZE
352    
353     /* Define to 1 if you have the ANSI C header files. */
354     #undef STDC_HEADERS
355    
356     /* Set TERM to the value given by configure */
357     #undef TERMENV
358    
359     /* Define if you want blinking text support */
360     #undef TEXT_BLINK
361    
362     /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
363     #undef TIME_WITH_SYS_TIME
364    
365     /* Define if you want your background to be tinted */
366     #undef TINTING
367    
368     /* Define if you want your background to use the parent window background */
369     #undef TRANSPARENT
370    
371     /* Define location of ttys/ttytab */
372     #undef TTYTAB_FILENAME
373    
374 root 1.6 /* "" */
375 ayin 1.1 #undef TTY_GID_SUPPORT
376    
377     /* Define if you want to represent unicode characters outside plane 0 */
378     #undef UNICODE_3
379    
380 root 1.5 /* "" */
381     #undef UNIX98_PTY
382    
383 ayin 1.1 /* Define if you want to have XIM (X Input Method) protocol support - required
384     for multibyte characters input */
385     #undef USE_XIM
386    
387 root 1.5 /* Define location of utmpx */
388     #undef UTMPX_FILE
389    
390     /* Define location of utmp */
391     #undef UTMP_FILE
392    
393 ayin 1.1 /* Define if you want to have utmp/utmpx support */
394     #undef UTMP_SUPPORT
395    
396 root 1.5 /* Define location of wtmpx */
397     #undef WTMPX_FILE
398    
399     /* Define location of wtmp */
400     #undef WTMP_FILE
401    
402 ayin 1.1 /* Define if you want to have wtmp support when utmp/utmpx is enabled */
403     #undef WTMP_SUPPORT
404    
405     /* Define to enable xft support */
406     #undef XFT
407    
408     /* Define if your XIMCallback specifies XIC as first type. */
409     #undef XIMCB_PROTO_BROKEN
410    
411 root 1.10 /* Define ONLY iff Xlib.h supports it */
412     #undef XLIB_ILLEGAL_ACCESS
413    
414 sasha 1.11 /* Define if you want to have sexy-looking background pixmaps. Needs libXpm or
415     libAfterImage */
416 ayin 1.1 #undef XPM_BACKGROUND
417    
418     /* Define if you include <X11/xpm.h> on a normal include path (be careful) */
419     #undef XPM_INC_X11
420    
421     /* Support Xterm style scrollbars */
422     #undef XTERM_SCROLLBAR
423    
424     /* Define to 1 if the X Window System is missing or not being used. */
425     #undef X_DISPLAY_MISSING
426    
427     /* Define to 1 if on AIX 3.
428     System headers sometimes define this.
429     We just want to avoid a redefinition error message. */
430     #ifndef _ALL_SOURCE
431     # undef _ALL_SOURCE
432     #endif
433    
434     /* Use all glibc features. */
435     #undef _GNU_SOURCE
436    
437     /* Needed to get declarations for msg_control and msg_controllen on Solaris */
438     #undef _XOPEN_SOURCE
439    
440     /* Needed to get declarations for msg_control and msg_controllen on Solaris */
441     #undef _XOPEN_SOURCE_EXTENDED
442    
443     /* Needed to get declarations for msg_control and msg_controllen on Solaris */
444     #undef __EXTENSIONS__
445    
446     /* Define to empty if `const' does not conform to ANSI C. */
447     #undef const
448    
449     /* Define to `int' if <sys/types.h> doesn't define. */
450     #undef gid_t
451    
452     /* Define to `__inline__' or `__inline' if that's what the C compiler
453     calls it, or to nothing if 'inline' is not supported under any name. */
454     #ifndef __cplusplus
455     #undef inline
456     #endif
457    
458     /* Define to `int' if <sys/types.h> does not define. */
459     #undef mode_t
460    
461     /* Define to `int' if <sys/types.h> does not define. */
462     #undef pid_t
463    
464     /* Define to `int' if <sys/types.h> doesn't define. */
465     #undef uid_t