ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/configure.ac
Revision: 1.143
Committed: Sun Jun 10 13:07:56 2012 UTC (11 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.142: +43 -36 lines
Log Message:
Switch background.C to rxvtimg api (xrender is now required).

File Contents

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