ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/configure.ac
Revision: 1.110
Committed: Thu Apr 1 08:10:21 2010 UTC (14 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.109: +10 -0 lines
Log Message:
Hook 256-color support in configure.

File Contents

# User Rev Content
1 ayin 1.1 dnl#
2     dnl# Process this file with autoconf to produce a configure script.
3     dnl#
4    
5     AC_INIT
6     AC_PREREQ(2.50)
7     AC_CONFIG_SRCDIR([src/feature.h])
8     AC_CONFIG_HEADER(config.h:config.h.in)
9    
10     AC_CANONICAL_HOST
11    
12     dnl RXVT version
13     changequote(, )dnl
14     VERSION=`sed -n -e 's/^.*[ \t]VERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
15     DATE=`sed -n -e 's/^.*[ \t]DATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
16     changequote([, ])dnl
17 ayin 1.40 AC_SUBST(VERSION)dnl
18     AC_SUBST(DATE)dnl
19 root 1.83
20 ayin 1.1 echo ""
21     echo "configuring for rxvt $VERSION"
22     echo ""
23    
24     orig_CXXFLAGS="$CXXFLAGS"
25    
26     dnl# Checks for programs.
27     AC_PROG_CC
28     AC_PROG_CXX
29     AC_PROG_CPP
30     AC_PROG_INSTALL
31    
32 root 1.9 AC_AIX
33 ayin 1.90 AC_GNU_SOURCE
34 root 1.9 AC_ISC_POSIX
35 root 1.16 AC_LANG(C++)
36 root 1.9
37 sf-exg 1.109 dnl check whether we can link with gcc -lsupc++
38 root 1.9 if test x$GCC = xyes && test x$GXX = xyes; then
39 root 1.16 dnl FreeBSD (at least up to 5.3) has a broken GCC, workaround it
40     AC_MSG_CHECKING([for working libsupc++])
41     save_CXX="$CXX"
42     save_LIBS="$LIBS"
43     CXX="$CC"
44     LIBS="$LIBS -lsupc++"
45     LINKER="$CC"
46     AC_LINK_IFELSE(
47 root 1.35 [AC_LANG_PROGRAM([struct test { }; void f() try { throw new test; } catch (...) { throw; }],[])],
48 ayin 1.60 [AC_MSG_RESULT(ok)],
49 root 1.16 [
50 root 1.17 AC_MSG_RESULT([no, making everything bigger and slower])
51 root 1.16 LIBS="$save_LIBS"
52 root 1.17 LINKER="$save_CXX"
53 root 1.16 ]
54     )
55 root 1.17 CXX="$save_CXX"
56 root 1.9 fi
57     AC_SUBST(LINKER,[$LINKER])
58    
59 ayin 1.1 dnl# --------------------------------------------------------------------------
60 ayin 1.12 dnl# Supply default CXXFLAGS, if not specified by `CXXFLAGS=flags ./configure'
61 ayin 1.1 dnl#
62     if test -z "$orig_CXXFLAGS"; then
63     if test x$GCC = xyes && test "x$GXX" = xyes; then
64 root 1.85 CXXFLAGS="-g -O3 -fno-rtti -fvisibility-inlines-hidden -fno-threadsafe-statics -fno-enforce-eh-specs"
65 root 1.35 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="-g -O3"])
66 ayin 1.1 else
67     CXXFLAGS="-O"
68     fi
69     CFLAGS="$CXXFLAGS"
70     fi
71    
72     case $host in
73     *-*-solaris* )
74 ayin 1.55 AC_DEFINE(_XOPEN_SOURCE, 500, Needed to get declarations for msg_control and msg_controllen on Solaris)
75 ayin 1.1 ;;
76     esac
77    
78     dnl# FreeBSD needs to link libxpg4
79     AC_CHECK_FUNC(setlocale, [], [AC_CHECK_LIB(xpg4, setlocale, [LIBS="$LIBS -lxpg4"])])
80    
81     dnl# solaris needs to link libnsl and socket
82     AC_CHECK_FUNC(gethostbyname, [], [AC_CHECK_LIB(nsl, gethostbyname, [LIBS="$LIBS -lnsl"])])
83     AC_CHECK_FUNC(socket, [], [AC_CHECK_LIB(socket, socket, [LIBS="$LIBS -lsocket"])])
84    
85     support_frills=yes
86     support_inheritpixmap=yes
87     support_fading=yes
88     support_keepscrolling=yes
89     support_selectionscrolling=yes
90     support_mousewheel=yes
91     support_mouseslipwheel=yes
92     support_text_blink=yes
93     support_pointer_blank=yes
94     support_scroll_rxvt=yes
95     support_scroll_next=yes
96     support_scroll_xterm=yes
97     support_xim=yes
98 sasha 1.39 support_afterimage=yes
99     support_afterstep=yes
100 ayin 1.1 support_xft=yes
101     support_unicode3=no
102     support_combining=yes
103     support_8bitctrls=no
104     support_iso14755=yes
105     support_styles=yes
106     support_perl=yes
107     codesets=all
108    
109     dnl# --------------------------------------------------------------------------
110     dnl# CHECKING COMMAND LINE OPTIONS
111     dnl# --------------------------------------------------------------------------
112    
113     AC_ARG_ENABLE(everything,
114     [ --enable-everything enable standard non-multichoice features
115 root 1.104 NOTE: this option is order dependent],
116 ayin 1.1 [
117     if test x$enableval = xno; then
118     support_frills=no
119     support_inheritpixmap=no
120     support_fading=no
121     support_keepscrolling=no
122     support_selectionscrolling=no
123     support_lastlog=no
124     support_mousewheel=no
125     support_mouseslipwheel=no
126     support_text_blink=no
127     support_pointer_blank=no
128     support_scroll_rxvt=no
129     support_scroll_next=no
130     support_scroll_xterm=no
131     support_utmp=no
132     support_wtmp=no
133     support_xim=no
134 sasha 1.39 support_afterimage=no
135     support_afterstep=no
136 ayin 1.1 support_xft=no
137     support_unicode3=no
138     support_combining=no
139     support_8bitctrls=no
140     support_iso14755=no
141     support_styles=no
142     support_perl=no
143     codesets=
144     fi
145     if test x$enableval = xyes; then
146     support_frills=yes
147     support_inheritpixmap=yes
148     support_fading=yes
149     support_keepscrolling=yes
150     support_selectionscrolling=yes
151     support_lastlog=yes
152     support_mousewheel=yes
153     support_mouseslipwheel=yes
154     support_text_blink=yes
155     support_pointer_blank=yes
156     support_scroll_rxvt=yes
157     support_scroll_next=yes
158     support_scroll_xterm=yes
159     support_utmp=yes
160     support_wtmp=yes
161     support_xim=yes
162 sasha 1.39 support_afterimage=yes
163     support_afterstep=yes
164 ayin 1.1 support_xft=yes
165     support_unicode3=yes
166     support_combining=yes
167     #support_8bitctrls=yes
168     support_iso14755=yes
169     support_styles=yes
170     support_perl=yes
171     codesets=all
172     fi
173     ])
174    
175 root 1.106 ASSERTIONS=no
176     AC_ARG_ENABLE(assert,
177     [ --enable-assert enable assertions],
178     [if test x$enableval = xyes; then
179     ASSERTIONS=yes
180     fi])
181     if test x$ASSERTIONS = xno; then
182     AC_DEFINE(NDEBUG, 1, Disable assertions (good for debugging))
183     fi
184    
185 ayin 1.78 WARNINGS=no
186     AC_ARG_ENABLE(warnings,
187     [ --enable-warnings turn on g++ warnings],
188     [if test x$enableval = xyes; then
189     WARNINGS=yes
190     fi])
191     if test x$GXX = xyes; then
192     if test $WARNINGS = yes; then
193     save_CXXFLAGS="$CXXFLAGS"
194     CXXFLAGS="$CXXFLAGS -Wall -Wno-sign-compare -Wno-reorder -Wno-non-virtual-dtor"
195     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="$save_CXXFLAGS"])
196     else
197     CXXFLAGS="$CXXFLAGS -w"
198     fi
199     fi
200    
201 sf-exg 1.110 support_256_color=no
202     AC_ARG_ENABLE(256-color,
203     [ --enable-256-color enable 256-color support],
204     [if test x$enableval = xyes; then
205     support_256_color=yes
206     fi])
207     if test x$support_256_color = xyes; then
208     AC_DEFINE(USE_256_COLORS, 1, Define if you want 256-color support)
209     fi
210    
211 ayin 1.1 AC_ARG_ENABLE(unicode3,
212     [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters],
213     [if test x$enableval = xyes -o x$enableval = xno; then
214     support_unicode3=$enableval
215     fi])
216    
217     AC_ARG_ENABLE(combining,
218     [ --enable-combining enable composition of base and combining characters],
219     [if test x$enableval = xyes -o x$enableval = xno; then
220     support_combining=$enableval
221     fi])
222    
223     AC_ARG_ENABLE(xft,
224     [ --enable-xft enable xft support on systems that have it],
225     [if test x$enableval = xyes -o x$enableval = xno; then
226     support_xft=$enableval
227     fi])
228    
229     AC_ARG_ENABLE(font-styles,
230     [ --enable-font-styles enable bold and italic support],
231     [if test x$enableval = xyes -o x$enableval = xno; then
232     support_styles=$enableval
233     fi])
234    
235 sasha 1.39 AC_ARG_ENABLE(afterimage,
236 root 1.104 [ --enable-afterimage enable integration with libAfterImage for background images],
237 sasha 1.39 [if test x$enableval = xyes -o x$enableval = xno; then
238     support_afterimage=$enableval
239     fi])
240    
241 ayin 1.41 AC_ARG_WITH(afterimage_config,
242     [ --with-afterimage-config=DIR use libAfterImage config script in DIR],
243 ayin 1.48 [if test "x$withval" != x; then
244     afterimage_config=$withval/afterimage-config
245     fi])
246 sasha 1.39
247 ayin 1.68 dnl AC_ARG_ENABLE(afterstep,
248     dnl [ --enable-afterstep enable integration with AfterStep window manager],
249     dnl [if test x$enableval = xyes -o x$enableval = xno; then
250     dnl support_afterstep=$enableval
251     dnl fi])
252 sasha 1.39
253 ayin 1.1 AC_ARG_ENABLE(transparency,
254     [ --enable-transparency enable transparent backgrounds],
255     [if test x$enableval = xyes -o x$enableval = xno; then
256     support_inheritpixmap=$enableval
257     fi])
258    
259     AC_ARG_ENABLE(fading,
260     [ --enable-fading enable colors fading when off focus],
261     [if test x$enableval = xyes -o x$enableval = xno; then
262     support_fading=$enableval
263     fi])
264    
265     AC_ARG_ENABLE(rxvt-scroll,
266     [ --enable-rxvt-scroll enable rxvt style scrollbar],
267     [if test x$enableval = xyes -o x$enableval = xno; then
268     support_scroll_rxvt=$enableval
269     fi])
270    
271     AC_ARG_ENABLE(next-scroll,
272     [ --enable-next-scroll enable NeXT style scrollbar],
273     [if test x$enableval = xyes -o x$enableval = xno; then
274     support_scroll_next=$enableval
275     fi])
276    
277     AC_ARG_ENABLE(xterm-scroll,
278     [ --enable-xterm-scroll enable Xterm style scrollbar],
279     [if test x$enableval = xyes -o x$enableval = xno; then
280     support_scroll_xterm=$enableval
281     fi])
282    
283     AC_ARG_ENABLE(perl,
284     [ --enable-perl enable embedded perl interpreter],
285     [if test x$enableval = xyes -o x$enableval = xno; then
286     support_perl=$enableval
287     fi])
288    
289     AC_ARG_WITH(codesets,
290 ayin 1.79 [ --with-codesets=CS,... compile in additional codesets (jp,jp_ext,kr,zh,zh_ext,all)],
291 ayin 1.1 [codesets="$withval"])
292    
293     AC_ARG_ENABLE(xim,
294     [ --enable-xim XIM (X Input Method) protocol support],
295     [if test x$enableval = xyes -o x$enableval = xno; then
296     support_xim=$enableval
297     fi])
298    
299     AC_ARG_ENABLE(backspace-key,
300     [ --disable-backspace-key disable handling of the backspace key],
301     [if test x$enableval = xno; then
302     AC_DEFINE(NO_BACKSPACE_KEY, 1, Define if you don't want support for the backspace key)
303     fi])
304    
305     AC_ARG_ENABLE(delete-key,
306     [ --disable-delete-key disable handling of the delete key],
307     [if test x$enableval = xno; then
308     AC_DEFINE(NO_DELETE_KEY, 1, Define if you don't want support for the (non-keypad) delete key)
309     fi])
310    
311     AC_ARG_ENABLE(resources,
312     [ --disable-resources disable all resource checking],
313     [if test x$enableval = xno; then
314     AC_DEFINE(NO_RESOURCES, 1, Define if you don't want any resources read)
315     fi])
316    
317     AC_ARG_ENABLE(8bitctrls,
318     [ --enable-8bitctrls enable 8 bit control sequences (not recommended)],
319     [if test x$enableval = xyes -o x$enableval = xno; then
320     support_8bitctrls=$enableval
321     fi])
322    
323     RESFALLBACK=Rxvt
324     AC_ARG_ENABLE(fallback,
325 ayin 1.77 [ --enable-fallback@<:@=CLASS@:>@ fall back on CLASS resources in addition to URxvt ones (default: Rxvt)],
326 ayin 1.1 [
327     test x$enableval = xyes && enableval=Rxvt
328     test x$enableval = xno && enableval=
329     RESFALLBACK="$enableval"
330     ])
331    
332     if test x$RESFALLBACK != x; then
333     AC_DEFINE_UNQUOTED(RESFALLBACK, "$RESFALLBACK", [Fallback resource class])
334     fi
335    
336     RESNAME=urxvt
337     AC_ARG_WITH(res-name,
338     [ --with-res-name=NAME use this as default resource name (default: urxvt)],
339     [RESNAME="$withval"])
340     AC_DEFINE_UNQUOTED(RESNAME,"$RESNAME", [Default resource name])
341    
342     RESCLASS=URxvt
343     AC_ARG_WITH(res-class,
344     [ --with-res-class=CLASS use this as the resource class (default: URxvt)],
345     [RESCLASS="$withval"])
346     AC_DEFINE_UNQUOTED(RESCLASS,"$RESCLASS", [Resource class])
347    
348     RXVTNAME=urxvt
349     AC_ARG_WITH(name,
350     [ --with-name=NAME set the basename for the installed binaries (default: urxvt)],
351     [RXVTNAME="$withval"])
352     AC_DEFINE_UNQUOTED(RXVTNAME,"$RXVTNAME", [Binary base name])
353    
354     RXVTNAME=`echo "$RXVTNAME"|sed "$program_transform_name"`
355     AC_SUBST(RXVTNAME)
356    
357     AC_ARG_ENABLE(swapscreen,
358     [ --disable-swapscreen disable swap screen support],
359     [if test x$enableval = xno; then
360     AC_DEFINE(NO_SECONDARY_SCREEN, 1, Disable the secondary screen. Many programs use the secondary screen as their workplace)
361     fi])
362    
363     AC_ARG_ENABLE(iso14755,
364     [ --enable-iso14755 enable support for extended ISO 14755 modes],
365     [if test x$enableval = xyes -o x$enableval = xno; then
366     support_iso14755=$enableval
367     fi])
368    
369     AC_ARG_ENABLE(frills,
370     [ --enable-frills enable support for rarely used features],
371     [if test x$enableval = xyes -o x$enableval = xno; then
372     support_frills=$enableval
373     fi])
374    
375     AC_ARG_ENABLE(keepscrolling,
376     [ --enable-keepscrolling enable continual scrolling on scrollbar arrow press],
377     [if test x$enableval = xyes -o x$enableval = xno; then
378     support_keepscrolling=$enableval
379     fi])
380    
381     AC_ARG_ENABLE(selectionscrolling,
382     [ --enable-selectionscrolling enable scrolling during selections],
383     [if test x$enableval = xyes -o x$enableval = xno; then
384     support_selectionscrolling=$enableval
385     fi])
386    
387     AC_ARG_ENABLE(mousewheel,
388     [ --enable-mousewheel enable scrolling via mouse wheel or buttons 4 & 5],
389     [if test x$enableval = xyes -o x$enableval = xno; then
390     support_mousewheel=$enableval
391     fi])
392    
393     AC_ARG_ENABLE(slipwheeling,
394 ayin 1.77 [ --enable-slipwheeling enable slip wheel scrolling (requires --enable-mousewheel)],
395 ayin 1.1 [if test x$enableval = xyes -o x$enableval = xno; then
396     support_mouseslipwheel=$enableval
397     fi])
398    
399     AC_ARG_ENABLE(smart-resize,
400     [ --enable-smart-resize enable smart growth/shrink behaviour],
401     [if test x$enableval = xyes; then
402     AC_DEFINE(SMART_RESIZE, 1, Define to use "smart" resize behavior)
403     fi])
404    
405     AC_ARG_ENABLE(text-blink,
406     [ --enable-text-blink enable blinking text],
407     [if test x$enableval = xyes -o x$enableval = xno; then
408     support_text_blink=$enableval
409     fi])
410    
411     AC_ARG_ENABLE(pointer-blank,
412 sf-exg 1.108 [ --enable-pointer-blank enable pointer blanking when typing or inactive],
413 ayin 1.1 [if test x$enableval = xyes -o x$enableval = xno; then
414     support_pointer_blank=$enableval
415     fi])
416    
417     AC_ARG_WITH(term,
418     [ --with-term=NAME set the terminal to NAME (default: rxvt)],
419     [if test x$withval != x; then
420     AC_DEFINE_UNQUOTED(TERMENV, "$withval",Set TERM to the value given by configure) term="$withval"
421     fi])
422    
423     AC_ARG_WITH(terminfo,
424     [ --with-terminfo=PATH set the path to the terminfo tree to PATH],
425     [if test x$withval != x; then
426     AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval"
427     fi])
428    
429     dnl# --------------------------------------------------------------------------
430    
431 root 1.84 LIBEV_M4_AVOID_LIBRT=1
432 root 1.82 m4_include([libev/libev.m4])
433    
434     dnl# --------------------------------------------------------------------------
435    
436 ayin 1.76 AC_PATH_PROG(TIC, tic, :)
437 ayin 1.1
438     AC_PATH_XTRA
439    
440 ayin 1.65 AFTERIMAGE_CFLAGS=
441 sasha 1.39 AFTERIMAGE_LIBS=
442 sasha 1.62 AFTERIMAGE_VERSION=
443 sasha 1.39
444 ayin 1.44 if test x$support_afterimage = xyes; then
445 ayin 1.42 support_afterimage=no
446 root 1.45
447 ayin 1.46 if test "x$afterimage_config" = "x" ; then
448 ayin 1.43 AC_PATH_PROG(afterimage_config, afterimage-config, no)
449 ayin 1.42 fi
450 root 1.69 if test "x$afterimage_config" != "xno" ; then
451     AC_MSG_CHECKING(for libAfterImage version >= 1.15)
452     xAFTERIMAGE_VERSION=`$afterimage_config --version`
453     if test -n "$xAFTERIMAGE_VERSION" ; then
454     xAFTERIMAGE_CFLAGS=`$afterimage_config --cflags`
455     xAFTERIMAGE_LIBS=`$afterimage_config --libs`
456     if test "x$xAFTERIMAGE_LIBS" != "x"; then
457     libai_ver_major=`echo $xAFTERIMAGE_VERSION | cut -f 1 -d .`
458     libai_ver_minor=`echo $xAFTERIMAGE_VERSION | cut -f 2 -d .`
459     if test $libai_ver_major -gt 1 -o \( $libai_ver_major -eq 1 -a $libai_ver_minor -ge 15 \); then
460     support_afterimage=yes
461     AFTERIMAGE_CFLAGS="$xAFTERIMAGE_CFLAGS"
462     AFTERIMAGE_LIBS="$xAFTERIMAGE_LIBS"
463     AFTERIMAGE_VERSION="$xAFTERIMAGE_VERSION"
464     fi
465 sasha 1.62 fi
466 ayin 1.42 fi
467 root 1.69 if test "x$support_afterimage" = "xyes"; then
468     AC_MSG_RESULT($AFTERIMAGE_LIBS)
469     else
470     AC_MSG_RESULT(no)
471     fi
472 ayin 1.42 fi
473 sasha 1.39 fi
474    
475 ayin 1.1 dnl# --------------------------------------------------------------------------
476     dnl# CHECKING FOR HEADER FILES
477     dnl# --------------------------------------------------------------------------
478     AC_CHECK_HEADERS( \
479     sys/byteorder.h \
480     sys/ioctl.h \
481     sys/sockio.h \
482     sys/strredir.h \
483 ayin 1.14 stdint.h \
484     wchar.h \
485     cwchar \
486 ayin 1.1 )
487    
488     AC_CACHE_CHECK([for XPointer], rxvt_cv_xpointer,
489     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>]], [[XPointer dummy;]])],[rxvt_cv_xpointer=yes],[rxvt_cv_xpointer=no])])
490     if test x$rxvt_cv_xpointer = xyes; then
491     AC_DEFINE(HAVE_XPOINTER, 1, Define if you have XPointer typedef)
492     fi
493    
494 sf-exg 1.107 AC_CACHE_CHECK([for XLIB_ILLEGAL_ACCESS], rxvt_cv_xlib_illegal_access,
495 root 1.35 [AC_COMPILE_IFELSE(
496     [AC_LANG_PROGRAM([
497     #define XLIB_ILLEGAL_ACCESS
498     #include <X11/Xlib.h>
499     ],[
500     Display *dpy;
501     dpy->xdefaults = (char *)0;
502     ])],
503 sf-exg 1.107 [rxvt_cv_xlib_illegal_access=yes],[rxvt_cv_xlib_illegal_access=no]
504 root 1.35 )])
505 sf-exg 1.107 if test x$rxvt_cv_xlib_illegal_access = xyes; then
506 root 1.35 AC_DEFINE(XLIB_ILLEGAL_ACCESS, 1, Define ONLY iff Xlib.h supports it)
507     fi
508 ayin 1.1
509     dnl# --------------------------------------------------------------------------
510     dnl# CHECKING FOR MISSING TYPEDEFS
511     dnl# --------------------------------------------------------------------------
512     dnl# Missing typedefs and replacements
513     AC_TYPE_MODE_T
514     AC_TYPE_PID_T
515     AC_TYPE_UID_T
516 ayin 1.97 AC_TYPE_INT16_T
517     AC_TYPE_UINT16_T
518     AC_TYPE_INT32_T
519     AC_TYPE_UINT32_T
520 ayin 1.1
521     dnl# --------------------------------------------------------------------------
522     dnl# CHECKING FOR LIBRARY FUNCTIONS
523     dnl# --------------------------------------------------------------------------
524 ayin 1.80 AC_CHECK_FUNCS(unsetenv)
525 ayin 1.1
526 ayin 1.15 UTMP_CHECK
527 ayin 1.1
528     dnl# --------------------------------------------------------------------------
529    
530     dnl# --------------------------------------------------------------------------
531     dnl# --------------------------------------------------------------------------
532    
533     dnl# this is a really hack test for some basic Xlocale stuff
534 ayin 1.79 save_LIBS=$LIBS
535     save_CFLAGS=$CFLAGS
536 ayin 1.1 CFLAGS="$CFLAGS $X_CFLAGS"
537     LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11"
538 ayin 1.54 if test x$support_xim = xyes; then
539 ayin 1.74 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale,
540     [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <X11/Xlib.h>
541     #include <stdlib.h>
542     main() {
543     char *p;
544     if ((p = XSetLocaleModifiers("@im=none")) != NULL && *p)
545     exit (XSupportsLocale() ? 0 : 1);
546     else
547     exit (1);}]])],[dnl
548     rxvt_cv_func_xlocale=yes],[rxvt_cv_func_xlocale=no],[dnl
549     :])])
550 ayin 1.54 if test x$rxvt_cv_func_xlocale = xyes; then
551     AC_DEFINE(USE_XIM, 1, Define if you want to have XIM (X Input Method) protocol support - required for multibyte characters input)
552 sf-exg 1.107 AC_CACHE_CHECK(for broken XIM callback, rxvt_cv_broken_ximcb,
553 ayin 1.74 [AC_COMPILE_IFELSE([
554     #include <X11/Xlib.h>
555    
556     void im_destroy_cb (XIC unused1, XPointer client_data, XPointer unused3);
557    
558     void f() {
559     XIMCallback cb;
560     cb.callback = im_destroy_cb;
561     }
562 sf-exg 1.107 ],rxvt_cv_broken_ximcb=yes,rxvt_cv_broken_ximcb=no)])
563 ayin 1.74
564 sf-exg 1.107 if test x$rxvt_cv_broken_ximcb = xyes; then
565 ayin 1.74 AC_DEFINE(XIMCB_PROTO_BROKEN, 1, Define if your XIMCallback specifies XIC as first type.)
566     fi
567 ayin 1.54 fi
568     fi
569 ayin 1.1
570     AC_CACHE_CHECK(for working X setlocale, rxvt_cv_func_xsetlocale,
571     [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#define X_LOCALE 1
572     #include <X11/Xlocale.h>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_xsetlocale=yes],[rxvt_cv_func_xsetlocale=no])])
573     if test x$rxvt_cv_func_xsetlocale = xyes; then
574     AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works)
575     fi
576 ayin 1.79 LIBS=$save_LIBS
577     CFLAGS=$save_CFLAGS
578 ayin 1.1
579     AC_CACHE_CHECK(for working plain setlocale, rxvt_cv_func_setlocale,
580     [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <clocale>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_setlocale=yes],[rxvt_cv_func_setlocale=no])])
581     if test x$rxvt_cv_func_setlocale = xyes; then
582     AC_DEFINE(HAVE_SETLOCALE, 1, Define if plain old setlocale works)
583     fi
584    
585     AC_CACHE_CHECK(for working nl_langinfo, rxvt_cv_func_nl_langinfo,
586     [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <langinfo.h>]], [[nl_langinfo(CODESET);]])],[rxvt_cv_func_nl_langinfo=yes],[rxvt_cv_func_nl_langinfo=no])])
587     if test x$rxvt_cv_func_nl_langinfo = xyes; then
588     AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works)
589     fi
590    
591 ayin 1.19 SCM_RIGHTS_CHECK
592 ayin 1.1
593 ayin 1.15 PTY_CHECK
594 ayin 1.1
595 ayin 1.23 TTY_GROUP_CHECK
596    
597 ayin 1.1 dnl# --------------------------------------------------------------------------
598     dnl# now add and remove other stuff
599     dnl# --------------------------------------------------------------------------
600     if test x$support_xft = xyes; then
601 ayin 1.18 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
602     if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then
603 root 1.83 X_LIBS="`$PKG_CONFIG xft --libs` $X_LIBS"
604 ayin 1.18 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`"
605     else
606 ayin 1.22 AC_PATH_PROG(XFT_CONFIG, xft-config, no)
607 ayin 1.18 if test $XFT_CONFIG != no; then
608 root 1.83 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS"
609 ayin 1.18 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`"
610     fi
611     fi
612 ayin 1.1
613 root 1.83 save_LIBS="$LIBS"
614     LIBS="$LIBS $X_LIBS"
615 ayin 1.1 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no])
616 root 1.83 AC_CHECK_LIB(Xft,XftDrawString32,:,[support_xft=no])
617     LIBS="$save_LIBS"
618 ayin 1.1
619     if test x$support_xft = xyes; then
620     AC_DEFINE(XFT, 1, Define to enable xft support)
621     fi
622     fi
623     if test x$support_styles = xyes; then
624     AC_DEFINE(ENABLE_STYLES, 1, Define if you want bold and italic support)
625     fi
626     if test x$support_iso14755 = xyes; then
627     AC_DEFINE(ISO_14755, 1, Define if you want ISO 14755 extended support)
628     fi
629     if test x$support_8bitctrls = xyes; then
630     AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences)
631     fi
632     if test x$support_fading = xyes; then
633     AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost)
634     fi
635     if test x$support_inheritpixmap = xyes; then
636 root 1.56 AC_DEFINE(ENABLE_TRANSPARENCY, 1, Define if you want your background to use the parent window background)
637 ayin 1.1 fi
638     if test x$support_keepscrolling = xno; then
639     AC_DEFINE(NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING, 1, Define for continual scrolling when you keep the scrollbar button pressed)
640     fi
641     if test x$support_selectionscrolling = xyes; then
642     AC_DEFINE(SELECTION_SCROLLING, 1, Define to allow scrolling when the selection moves to the top or bottom of the screen)
643     fi
644 ayin 1.73 if test x$support_frills = xyes; then
645     AC_DEFINE(ENABLE_FRILLS, 1, Define if you want handling for rarely used but handy features)
646     fi
647 ayin 1.1 if test x$support_mousewheel = xyes; then
648     AC_DEFINE(MOUSE_WHEEL, 1, Define to use wheel events (button4 and button5) to scroll)
649     fi
650     if test x$support_mouseslipwheel = xyes; then
651     AC_DEFINE(MOUSE_SLIP_WHEELING, 1, Define to have CTRL cause wheel events to accelerate scrolling. Release CTRL to halt scrolling)
652     fi
653 sasha 1.39 if test x$support_afterimage = xyes; then
654     AC_DEFINE(HAVE_AFTERIMAGE, 1, Define if you want to use libAfterImage for image processing)
655 sasha 1.75 AC_DEFINE(BG_IMAGE_FROM_FILE, 1, Define if you want to have sexy-looking background pixmaps. Needs libAfterImage)
656 sasha 1.39 fi
657    
658 ayin 1.68 dnl if test x$support_afterstep = xyes; then
659     dnl AC_DEFINE(AFTERSTEP_INTEGRATION, 1, Define if you want to integrate with AfterStep window manager)
660     dnl fi
661 sasha 1.39
662 ayin 1.105 scrolltypes=plain
663     AC_DEFINE(PLAIN_SCROLLBAR, 1, Support plain style scrollbars)
664    
665 ayin 1.1 if test x$support_scroll_rxvt = xyes; then
666     AC_DEFINE(RXVT_SCROLLBAR, 1, Support Rxvt original style scrollbars)
667 ayin 1.105 scrolltypes="$scrolltypes rxvt"
668 ayin 1.1 fi
669     if test x$support_scroll_next = xyes; then
670     AC_DEFINE(NEXT_SCROLLBAR, 1, Support NeXT style scrollbars)
671     scrolltypes="$scrolltypes next"
672     fi
673     if test x$support_scroll_xterm = xyes; then
674     AC_DEFINE(XTERM_SCROLLBAR, 1, Support Xterm style scrollbars)
675     scrolltypes="$scrolltypes xterm"
676     fi
677     if test x$support_pointer_blank = xyes; then
678     AC_DEFINE(POINTER_BLANK, 1, Define if you want hide the pointer while typing)
679     fi
680     if test x$support_text_blink = xyes; then
681     AC_DEFINE(TEXT_BLINK, 1, Define if you want blinking text support)
682     fi
683     if test x$support_unicode3 = xyes; then
684     AC_DEFINE(UNICODE_3, 1, Define if you want to represent unicode characters outside plane 0)
685     fi
686     if test x$support_combining = xyes; then
687     AC_DEFINE(ENABLE_COMBINING, 1, Define if you want to automatically compose combining characters)
688     fi
689     if test x$codesets = xall; then
690     codesets=jp,jp-ext,kr,zh,zh-ext
691     fi
692     AC_DEFINE(ENCODING_EU, 1, Define if you want european extended codesets)
693     AC_DEFINE(ENCODING_VN, 1, Define if you want vietnamese codesets)
694     for codeset in `echo $codesets | tr "[a-z,\\-]" "[A-Z _]"`; do
695     case "$codeset" in
696     JP ) AC_DEFINE(ENCODING_JP, 1, Define if you want japanese codesets) ;;
697     JP_EXT ) AC_DEFINE(ENCODING_JP_EXT, 1, Define if you want extended japanese codesets) ;;
698     KR ) AC_DEFINE(ENCODING_KR, 1, Define if you want korean codesets) ;;
699     ZH ) AC_DEFINE(ENCODING_ZH, 1, Define if you want chinese codesets) ;;
700     ZH_EXT ) AC_DEFINE(ENCODING_ZH_EXT, 1, Define if you want extended chinese codesets) ;;
701     esac
702     done
703    
704     IF_PERL=\#
705     if test x$support_perl = xyes; then
706     AC_PATH_PROG(PERL, perl5)
707     AC_PATH_PROG(PERL, perl)
708    
709     AC_MSG_CHECKING(for $PERL suitability)
710     if $PERL -MExtUtils::Embed -e "use v5.8" >/dev/null 2>/dev/null; then
711    
712     save_CXXFLAGS="$CXXFLAGS"
713     save_LIBS="$LIBS"
714     CXXFLAGS="$CXXFLAGS `$PERL -MExtUtils::Embed -e ccopts`"
715     LIBS="$LIBS `$PERL -MExtUtils::Embed -e ldopts`"
716 root 1.100 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
717 ayin 1.1 #include <EXTERN.h>
718     #include <perl.h>
719     #include <XSUB.h>
720 root 1.100 ]], [[
721 ayin 1.1 PerlInterpreter *perl = perl_alloc ();
722 root 1.100 ]])],[rxvt_perl_link=yes],[rxvt_perl_link=no])
723 ayin 1.1 CXXFLAGS="$save_CXXFLAGS"
724     LIBS="$save_LIBS"
725    
726     if test x$rxvt_perl_link = xyes; then
727     AC_MSG_RESULT(ok)
728     AC_DEFINE(ENABLE_PERL, 1, Define if you can embed a perl interpreter)
729     IF_PERL=
730     PERL_O=rxvtperl.o
731     PERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts`"
732     PERLLIB="`$PERL -MExtUtils::Embed -e ldopts`"
733     PERLPRIVLIBEXP="`$PERL -MConfig -e 'print $Config{privlibexp}'`"
734     else
735 root 1.63 AC_MSG_ERROR([no, unable to link])
736 ayin 1.1 fi
737     else
738 root 1.63 AC_MSG_ERROR([no working perl found, or perl not version >= 5.8])
739 ayin 1.1 fi
740     fi
741     AC_SUBST(PERLLIB)
742     AC_SUBST(PERLFLAGS)
743     AC_SUBST(PERLPRIVLIBEXP)
744     AC_SUBST(PERL)
745     AC_SUBST(IF_PERL)
746     AC_SUBST(PERL_O)
747    
748     AC_SUBST(CFLAGS)
749     AC_SUBST(CPPFLAGS)
750     AC_SUBST(LDFLAGS)
751     AC_SUBST(X_CFLAGS)
752    
753     dnl# Attack the libs
754     AC_SUBST(LIBS)
755     AC_SUBST(X_LIBS)
756     AC_SUBST(X_EXTRA_LIBS)
757    
758 ayin 1.65 AC_SUBST(AFTERIMAGE_CFLAGS)
759 sasha 1.39 AC_SUBST(AFTERIMAGE_LIBS)
760    
761 ayin 1.1 AC_ARG_PROGRAM
762    
763     AC_CONFIG_FILES([Makefile \
764     doc/Makefile \
765     src/Makefile \
766     ])
767     AC_OUTPUT
768    
769     echo "Configuration:
770    
771     Rxvt version: $VERSION : $DATE
772     Source code location: $srcdir
773     Install path: ${prefix}/bin
774     Compiler: $CXX
775 root 1.36 Compiler flags: $CXXFLAGS
776 ayin 1.1 Linker: $LINKER"
777    
778     if test x$term != x; then
779     echo " set TERM to: $term"
780     fi
781     if test x$terminfo != x; then
782     echo " set TERMINFO to: $terminfo"
783     fi
784     echo " default resource name: $RESNAME"
785     echo " resource class: $RESCLASS"
786     if test x$RESFALLBACK != x; then
787     echo " resource class fallback: $RESFALLBACK"
788     fi
789     echo
790 root 1.20 echo " embedded perl: $support_perl"
791 root 1.69 echo " libafterimage: $support_afterimage"
792 ayin 1.71 dnl echo " AfterStep integration: $support_afterstep"
793 root 1.20 echo
794 ayin 1.1 if test x$support_xim = xyes -a x$rxvt_cv_func_xlocale = xno; then
795     echo ".----------------------------------------------------------------."
796     echo ". WARNING: --enable-xim was specified however the locale support ."
797     echo ". functions could not be found. ."
798     echo ". XIM is now being DISABLED! ."
799     echo ".----------------------------------------------------------------."
800     fi
801    
802 root 1.32 echo "*** Optionally check src/feature.h for further, rarely used options ***"
803 ayin 1.1 echo
804