Remove invocations of unneeded macros.
[dana/urxvt.git] / configure.ac
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 dnl LIBVERSION=`sed -n -e 's/^.*[ \t]LIBVERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
17 changequote([, ])dnl
18 AC_SUBST(VERSION)dnl
19 AC_SUBST(DATE)dnl
20 AC_SUBST(LSMDATE)dnl
21 AC_SUBST(LIBVERSION)dnl
22
23 echo ""
24 echo "configuring for rxvt $VERSION"
25 echo ""
26
27 orig_CXXFLAGS="$CXXFLAGS"
28
29 dnl# Checks for programs.
30 AC_PROG_CC
31 AC_PROG_CXX
32 AC_PROG_CPP
33 AC_PROG_INSTALL
34
35 AC_AIX
36 AC_ISC_POSIX
37 AC_LANG(C++)
38
39 dnl check wether we can link with gcc -lsupc++
40 if test x$GCC = xyes && test x$GXX = xyes; then
41    dnl FreeBSD (at least up to 5.3) has a broken GCC, workaround it
42    AC_MSG_CHECKING([for working libsupc++])
43    save_CXX="$CXX"
44    save_LIBS="$LIBS"
45    CXX="$CC"
46    LIBS="$LIBS -lsupc++"
47    LINKER="$CC"
48    AC_LINK_IFELSE(
49       [AC_LANG_PROGRAM([struct test { }; void f() try { throw new test; } catch (...) { throw; }],[])],
50       [AC_MSG_RESULT(ok)],
51       [
52          AC_MSG_RESULT([no, making everything bigger and slower])
53          LIBS="$save_LIBS"
54          LINKER="$save_CXX"
55       ]
56    )
57    CXX="$save_CXX"
58 fi
59 AC_SUBST(LINKER,[$LINKER])
60
61 dnl# --------------------------------------------------------------------------
62 dnl# Supply default CXXFLAGS, if not specified by `CXXFLAGS=flags ./configure'
63 dnl#
64 if test -z "$orig_CXXFLAGS"; then
65   if test x$GCC = xyes && test "x$GXX" = xyes; then
66     CXXFLAGS="-g -O3 -fno-rtti -fvisibility-inlines-hidden -fno-threadsafe-statics -fno-enforce-eh-specs"
67     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="-g -O3"])
68   else
69     CXXFLAGS="-O"
70   fi
71   CFLAGS="$CXXFLAGS"
72 fi
73
74 AC_DEFINE(_GNU_SOURCE, 1, Use all glibc features.)
75
76 case $host in
77    *-*-solaris* )
78       AC_DEFINE(_XOPEN_SOURCE, 500, Needed to get declarations for msg_control and msg_controllen on Solaris)
79       ;;
80 esac
81
82 dnl if test x$GXX = xyes; then
83 dnl    CXXFLAGS="$CXXFLAGS" dnl I once had -fno-exceptions, but I am using them now...
84 dnl fi
85
86 dnl# FreeBSD needs to link libxpg4
87 AC_CHECK_FUNC(setlocale,     [], [AC_CHECK_LIB(xpg4,   setlocale,     [LIBS="$LIBS -lxpg4"])])
88
89 dnl# solaris needs to link libnsl and socket
90 AC_CHECK_FUNC(gethostbyname, [], [AC_CHECK_LIB(nsl,    gethostbyname, [LIBS="$LIBS -lnsl"])])
91 AC_CHECK_FUNC(socket,        [], [AC_CHECK_LIB(socket, socket,        [LIBS="$LIBS -lsocket"])])
92
93 dnl AC_ENABLE_SHARED(no)dnl#    libtool
94 dnl AC_ENABLE_STATIC(yes)dnl#   libtool
95 dnl AC_PROG_LIBTOOL()dnl#               libtool
96
97 support_frills=yes
98 support_inheritpixmap=yes
99 support_fading=yes
100 support_keepscrolling=yes
101 support_selectionscrolling=yes
102 support_mousewheel=yes
103 support_mouseslipwheel=yes
104 support_text_blink=yes
105 support_pointer_blank=yes
106 support_scroll_rxvt=yes
107 support_scroll_next=yes
108 support_scroll_xterm=yes
109 support_scroll_plain=yes
110 support_xim=yes
111 support_afterimage=yes
112 support_afterstep=yes
113 support_xft=yes
114 support_unicode3=no
115 support_combining=yes
116 support_8bitctrls=no
117 support_iso14755=yes
118 support_styles=yes
119 support_perl=yes
120 codesets=all
121
122 dnl# --------------------------------------------------------------------------
123 dnl# CHECKING COMMAND LINE OPTIONS
124 dnl# --------------------------------------------------------------------------
125
126 if test "x$enable_shared" = xyes; then
127     AC_DEFINE(LIBRXVT, 1, Build shared library version - specify via configure only)
128     INSTALL_LIBRXVT=yes
129 fi
130 AC_SUBST(INSTALL_LIBRXVT)
131
132 AC_ARG_ENABLE(everything,
133   [  --enable-everything     enable standard non-multichoice features
134                      NOTE: this option is order dependent],
135   [
136     if test x$enableval = xno; then
137        support_frills=no
138        support_inheritpixmap=no
139        support_fading=no
140        support_keepscrolling=no
141        support_selectionscrolling=no
142        support_lastlog=no
143        support_mousewheel=no
144        support_mouseslipwheel=no
145        support_text_blink=no
146        support_pointer_blank=no
147        support_scroll_rxvt=no
148        support_scroll_next=no
149        support_scroll_xterm=no
150        support_scroll_plain=no
151        support_utmp=no
152        support_wtmp=no
153        support_xim=no
154        support_afterimage=no
155        support_afterstep=no
156        support_xft=no
157        support_unicode3=no
158        support_combining=no
159        support_8bitctrls=no
160        support_iso14755=no
161        support_styles=no
162        support_perl=no
163        codesets=
164     fi
165     if test x$enableval = xyes; then
166        support_frills=yes
167        support_inheritpixmap=yes
168        support_fading=yes
169        support_keepscrolling=yes
170        support_selectionscrolling=yes
171        support_lastlog=yes
172        support_mousewheel=yes
173        support_mouseslipwheel=yes
174        support_text_blink=yes
175        support_pointer_blank=yes
176        support_scroll_rxvt=yes
177        support_scroll_next=yes
178        support_scroll_xterm=yes
179        support_scroll_plain=yes
180        support_utmp=yes
181        support_wtmp=yes
182        support_xim=yes
183        support_afterimage=yes
184        support_afterstep=yes
185        support_xft=yes
186        support_unicode3=yes
187        support_combining=yes
188        #support_8bitctrls=yes
189        support_iso14755=yes
190        support_styles=yes
191        support_perl=yes
192        codesets=all
193     fi
194   ])
195
196 WARNINGS=no
197 AC_ARG_ENABLE(warnings,
198   [  --enable-warnings       turn on g++ warnings],
199   [if test x$enableval = xyes; then
200     WARNINGS=yes
201   fi])
202 if test x$GXX = xyes; then
203   if test $WARNINGS = yes; then
204     save_CXXFLAGS="$CXXFLAGS"
205     CXXFLAGS="$CXXFLAGS -Wall -Wno-sign-compare -Wno-reorder -Wno-non-virtual-dtor"
206     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="$save_CXXFLAGS"])
207   else
208     CXXFLAGS="$CXXFLAGS -w"
209   fi
210 fi
211
212 AC_ARG_ENABLE(unicode3,
213   [  --enable-unicode3       use 21 instead of 16 bits to represent unicode characters],
214   [if test x$enableval = xyes -o x$enableval = xno; then
215     support_unicode3=$enableval
216   fi])
217
218 AC_ARG_ENABLE(combining,
219   [  --enable-combining      enable composition of base and combining characters],
220   [if test x$enableval = xyes -o x$enableval = xno; then
221     support_combining=$enableval
222   fi])
223
224 AC_ARG_ENABLE(xft,
225   [  --enable-xft            enable xft support on systems that have it],
226   [if test x$enableval = xyes -o x$enableval = xno; then
227     support_xft=$enableval
228   fi])
229
230 AC_ARG_ENABLE(font-styles,
231   [  --enable-font-styles    enable bold and italic support],
232   [if test x$enableval = xyes -o x$enableval = xno; then
233     support_styles=$enableval
234   fi])
235
236 AC_ARG_ENABLE(afterimage,
237   [  --enable-afterimage enable integration with libAfterImage for background images],
238   [if test x$enableval = xyes -o x$enableval = xno; then
239     support_afterimage=$enableval
240   fi])
241
242 AC_ARG_WITH(afterimage_config,
243   [  --with-afterimage-config=DIR  use libAfterImage config script in DIR],
244   [if test "x$withval" != x; then
245     afterimage_config=$withval/afterimage-config
246   fi])
247
248 dnl AC_ARG_ENABLE(afterstep,
249 dnl   [  --enable-afterstep enable integration with AfterStep window manager],
250 dnl   [if test x$enableval = xyes -o x$enableval = xno; then
251 dnl     support_afterstep=$enableval
252 dnl   fi])
253
254 AC_ARG_ENABLE(transparency,
255   [  --enable-transparency   enable transparent backgrounds],
256   [if test x$enableval = xyes -o x$enableval = xno; then
257     support_inheritpixmap=$enableval
258   fi])
259
260 AC_ARG_ENABLE(fading,
261   [  --enable-fading         enable colors fading when off focus],
262   [if test x$enableval = xyes -o x$enableval = xno; then
263     support_fading=$enableval
264   fi])
265
266 AC_ARG_ENABLE(rxvt-scroll,
267   [  --enable-rxvt-scroll    enable rxvt style scrollbar],
268   [if test x$enableval = xyes -o x$enableval = xno; then
269     support_scroll_rxvt=$enableval
270   fi])
271
272 AC_ARG_ENABLE(next-scroll,
273   [  --enable-next-scroll    enable NeXT style scrollbar],
274   [if test x$enableval = xyes -o x$enableval = xno; then
275     support_scroll_next=$enableval
276   fi])
277
278 AC_ARG_ENABLE(xterm-scroll,
279   [  --enable-xterm-scroll   enable Xterm style scrollbar],
280   [if test x$enableval = xyes -o x$enableval = xno; then
281     support_scroll_xterm=$enableval
282   fi])
283
284 AC_ARG_ENABLE(plain-scroll,
285   [  --enable-plain-scroll   enable plain style scrollbar],
286   [if test x$enableval = xyes -o x$enableval = xno; then
287     support_scroll_plain=$enableval
288   fi])
289
290 AC_ARG_ENABLE(perl,
291   [  --enable-perl           enable embedded perl interpreter],
292   [if test x$enableval = xyes -o x$enableval = xno; then
293     support_perl=$enableval
294   fi])
295
296 AC_ARG_WITH(codesets,
297   [  --with-codesets=CS,...  compile in additional codesets (jp,jp_ext,kr,zh,zh_ext,all)],
298   [codesets="$withval"])
299
300 AC_ARG_ENABLE(xim,
301   [  --enable-xim            XIM (X Input Method) protocol support],
302   [if test x$enableval = xyes -o x$enableval = xno; then
303     support_xim=$enableval
304   fi])
305
306 AC_ARG_ENABLE(backspace-key,
307   [  --disable-backspace-key disable handling of the backspace key],
308   [if test x$enableval = xno; then
309     AC_DEFINE(NO_BACKSPACE_KEY, 1, Define if you don't want support for the backspace key)
310   fi])
311
312 AC_ARG_ENABLE(delete-key,
313   [  --disable-delete-key    disable handling of the delete key],
314   [if test x$enableval = xno; then
315     AC_DEFINE(NO_DELETE_KEY, 1, Define if you don't want support for the (non-keypad) delete key)
316   fi])
317
318 AC_ARG_ENABLE(resources,
319   [  --disable-resources     disable all resource checking],
320   [if test x$enableval = xno; then
321     AC_DEFINE(NO_RESOURCES, 1, Define if you don't want any resources read)
322   fi])
323
324 AC_ARG_ENABLE(8bitctrls,
325   [  --enable-8bitctrls      enable 8 bit control sequences (not recommended)],
326   [if test x$enableval = xyes -o x$enableval = xno; then
327     support_8bitctrls=$enableval
328   fi])
329
330 RESFALLBACK=Rxvt
331 AC_ARG_ENABLE(fallback,
332   [  --enable-fallback@<:@=CLASS@:>@ fall back on CLASS resources in addition to URxvt ones (default: Rxvt)],
333   [
334    test x$enableval = xyes && enableval=Rxvt
335    test x$enableval = xno  && enableval=
336    RESFALLBACK="$enableval"
337   ])
338
339 if test x$RESFALLBACK != x; then
340    AC_DEFINE_UNQUOTED(RESFALLBACK, "$RESFALLBACK", [Fallback resource class])
341 fi
342
343 RESNAME=urxvt
344 AC_ARG_WITH(res-name,
345   [  --with-res-name=NAME    use this as default resource name (default: urxvt)],
346   [RESNAME="$withval"])
347 AC_DEFINE_UNQUOTED(RESNAME,"$RESNAME", [Default resource name])
348
349 RESCLASS=URxvt
350 AC_ARG_WITH(res-class,
351   [  --with-res-class=CLASS  use this as the resource class (default: URxvt)],
352   [RESCLASS="$withval"])
353 AC_DEFINE_UNQUOTED(RESCLASS,"$RESCLASS", [Resource class])
354
355 RXVTNAME=urxvt
356 AC_ARG_WITH(name,
357   [  --with-name=NAME        set the basename for the installed binaries (default: urxvt)],
358   [RXVTNAME="$withval"])
359 AC_DEFINE_UNQUOTED(RXVTNAME,"$RXVTNAME", [Binary base name])
360
361 RXVTNAME=`echo "$RXVTNAME"|sed "$program_transform_name"`
362 AC_SUBST(RXVTNAME)
363
364 AC_ARG_ENABLE(swapscreen,
365   [  --disable-swapscreen    disable swap screen support],
366   [if test x$enableval = xno; then
367     AC_DEFINE(NO_SECONDARY_SCREEN, 1, Disable the secondary screen. Many programs use the secondary screen as their workplace)
368   fi])
369
370 AC_ARG_ENABLE(iso14755,
371   [  --enable-iso14755       enable support for extended ISO 14755 modes],
372   [if test x$enableval = xyes -o x$enableval = xno; then
373     support_iso14755=$enableval
374   fi])
375
376 AC_ARG_ENABLE(frills,
377   [  --enable-frills         enable support for rarely used features],
378   [if test x$enableval = xyes -o x$enableval = xno; then
379     support_frills=$enableval
380   fi])
381
382 AC_ARG_ENABLE(keepscrolling,
383   [  --enable-keepscrolling  enable continual scrolling on scrollbar arrow press],
384   [if test x$enableval = xyes -o x$enableval = xno; then
385     support_keepscrolling=$enableval
386   fi])
387
388 AC_ARG_ENABLE(selectionscrolling,
389   [  --enable-selectionscrolling  enable scrolling during selections],
390   [if test x$enableval = xyes -o x$enableval = xno; then
391     support_selectionscrolling=$enableval
392   fi])
393
394 AC_ARG_ENABLE(mousewheel,
395   [  --enable-mousewheel     enable scrolling via mouse wheel or buttons 4 & 5],
396   [if test x$enableval = xyes -o x$enableval = xno; then
397     support_mousewheel=$enableval
398   fi])
399
400 AC_ARG_ENABLE(slipwheeling,
401   [  --enable-slipwheeling   enable slip wheel scrolling (requires --enable-mousewheel)],
402   [if test x$enableval = xyes -o x$enableval = xno; then
403     support_mouseslipwheel=$enableval
404   fi])
405
406 AC_ARG_ENABLE(smart-resize,
407   [  --enable-smart-resize   enable smart growth/shrink behaviour],
408   [if test x$enableval = xyes; then
409     AC_DEFINE(SMART_RESIZE, 1, Define to use "smart" resize behavior)
410   fi])
411
412 AC_ARG_ENABLE(text-blink,
413   [  --enable-text-blink     enable blinking text],
414   [if test x$enableval = xyes -o x$enableval = xno; then
415     support_text_blink=$enableval
416   fi])
417
418 AC_ARG_ENABLE(pointer-blank,
419   [  --enable-pointer-blank  enable pointer blank when typing or inactive pointer],
420   [if test x$enableval = xyes -o x$enableval = xno; then
421     support_pointer_blank=$enableval
422   fi])
423
424 AC_ARG_WITH(term,
425   [  --with-term=NAME        set the terminal to NAME (default: rxvt)],
426   [if test x$withval != x; then
427     AC_DEFINE_UNQUOTED(TERMENV, "$withval",Set TERM to the value given by configure) term="$withval"
428   fi])
429
430 AC_ARG_WITH(terminfo,
431   [  --with-terminfo=PATH    set the path to the terminfo tree to PATH],
432   [if test x$withval != x; then
433     AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval"
434   fi])
435
436 dnl# --------------------------------------------------------------------------
437
438 LIBEV_M4_AVOID_LIBRT=1
439 m4_include([libev/libev.m4])
440
441 dnl# --------------------------------------------------------------------------
442
443 AC_PATH_PROG(TIC, tic, :)
444
445 AC_PATH_XTRA
446
447 AFTERIMAGE_CFLAGS=
448 AFTERIMAGE_LIBS=
449 AFTERIMAGE_VERSION=
450
451 if test x$support_afterimage = xyes; then
452   support_afterimage=no
453
454   if test "x$afterimage_config" = "x" ; then
455     AC_PATH_PROG(afterimage_config, afterimage-config, no)
456   fi
457   if test "x$afterimage_config" != "xno" ; then
458     AC_MSG_CHECKING(for libAfterImage version >= 1.15)
459     xAFTERIMAGE_VERSION=`$afterimage_config --version`
460     if test -n "$xAFTERIMAGE_VERSION" ; then
461       xAFTERIMAGE_CFLAGS=`$afterimage_config --cflags`
462       xAFTERIMAGE_LIBS=`$afterimage_config --libs`
463       if test "x$xAFTERIMAGE_LIBS" != "x"; then
464         libai_ver_major=`echo $xAFTERIMAGE_VERSION | cut -f 1 -d .`
465         libai_ver_minor=`echo $xAFTERIMAGE_VERSION | cut -f 2 -d .`
466         if test $libai_ver_major -gt 1 -o \( $libai_ver_major -eq 1 -a $libai_ver_minor -ge 15 \); then
467           support_afterimage=yes
468           AFTERIMAGE_CFLAGS="$xAFTERIMAGE_CFLAGS"
469           AFTERIMAGE_LIBS="$xAFTERIMAGE_LIBS"
470           AFTERIMAGE_VERSION="$xAFTERIMAGE_VERSION"
471         fi
472       fi
473     fi
474     if test "x$support_afterimage" = "xyes"; then
475       AC_MSG_RESULT($AFTERIMAGE_LIBS)
476     else
477       AC_MSG_RESULT(no)
478     fi
479   fi
480 fi
481
482 dnl# --------------------------------------------------------------------------
483 dnl# CHECKING FOR HEADER FILES
484 dnl# --------------------------------------------------------------------------
485 AC_CHECK_HEADERS( \
486         assert.h \
487         fcntl.h \
488         stdarg.h \
489         stdlib.h \
490         string.h \
491         termios.h \
492         unistd.h \
493         sys/byteorder.h \
494         sys/ioctl.h \
495         sys/select.h \
496         sys/sockio.h \
497         sys/strredir.h \
498         sys/time.h \
499         stdint.h \
500         wchar.h \
501         cwchar \
502         clocale \
503 )
504
505 dnl# check to allow both <termios.h> and <sys/ioctl.h>
506 AC_CACHE_CHECK(whether termios.h and sys/ioctl.h may both be included, rxvt_cv_header_sysioctl,
507 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
508 #include <sys/ioctl.h>
509 #ifdef HAVE_TERMIOS_H
510 #include <termios.h>
511 #endif]], [[int a = ECHO;]])],[rxvt_cv_header_sysioctl=yes],[rxvt_cv_header_sysioctl=no])])
512
513 AC_CACHE_CHECK([for XPointer], rxvt_cv_xpointer,
514 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>]], [[XPointer dummy;]])],[rxvt_cv_xpointer=yes],[rxvt_cv_xpointer=no])])
515 if test x$rxvt_cv_xpointer = xyes; then
516   AC_DEFINE(HAVE_XPOINTER, 1, Define if you have XPointer typedef)
517 fi
518
519 AC_CACHE_CHECK([for XLIB_ILLEGAL_ACCESS], rxvt_xlib_illegal_access,
520 [AC_COMPILE_IFELSE(
521    [AC_LANG_PROGRAM([
522 #define XLIB_ILLEGAL_ACCESS
523 #include <X11/Xlib.h>
524    ],[
525       Display *dpy;
526       dpy->xdefaults = (char *)0;
527    ])],
528    [rxvt_xlib_illegal_access=yes],[rxvt_xlib_illegal_access=no]
529 )])
530 if test x$rxvt_xlib_illegal_access = xyes; then
531    AC_DEFINE(XLIB_ILLEGAL_ACCESS, 1, Define ONLY iff Xlib.h supports it)
532 fi
533
534 dnl# --------------------------------------------------------------------------
535 dnl# CHECKING FOR MISSING TYPEDEFS
536 dnl# --------------------------------------------------------------------------
537 dnl# Missing typedefs and replacements
538 AC_TYPE_MODE_T
539 dnl> AC_CHECK_TYPE(umode_t, int)
540 dnl> AC_CHECK_TYPE(off_t, long)
541 AC_TYPE_PID_T
542 AC_TYPE_UID_T
543
544 AC_CHECK_SIZEOF(short, 2)
545 AC_CHECK_SIZEOF(int, 4)
546 dnl AC_CHECK_SIZEOF(long, 4)
547 AC_CHECK_SIZEOF(long long, 8)
548 AC_CHECK_SIZEOF(int *, 4)
549
550 dnl# see usage below
551 AC_DEFUN([RXVT_CHECK_SIZE],
552   [AC_CACHE_CHECK([for $2], $1,
553     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdint.h>]], [[$2 dummy;]])],[$1=yes],[dnl
554 if test "$ac_cv_sizeof_char" -ge $3; then
555   $1="$4 char"
556 else
557   if test "$ac_cv_sizeof_short" -ge $3; then
558     $1="$4 short"
559   else
560     if test "$ac_cv_sizeof_int" -ge $3; then
561       $1="$4 int"
562     else
563       if test "$ac_cv_sizeof_long" -ge $3; then
564         $1="$4 long"
565       else
566         if test "$ac_cv_sizeof_long_long" -ge $3; then
567           $1="$4 long long"
568         else
569           $1="$4 $5" # we _must_ have a (possibly wrong) default
570         fi
571       fi
572     fi
573   fi
574 fi])])]
575 if test x"$$1" != xyes; then
576   $6="typedef $$1 $2;"
577 else
578   if test x"$4" = x; then
579     $6="/* typedef $5 $2; */"
580   else
581     $6="/* typedef $4 $5 $2; */"
582   fi
583 fi dnl
584 )
585 dnl#
586 dnl# Look for types the system may know about anyway.
587 dnl#
588 RXVT_CHECK_SIZE(rxvt_cv_int16_t, int16_t, 2, , short, rxvt_int16_typedef)
589 AC_SUBST(rxvt_int16_typedef)
590 RXVT_CHECK_SIZE(rxvt_cv_uint16_t, uint16_t, 2, unsigned, short, rxvt_uint16_typedef)
591 AC_SUBST(rxvt_uint16_typedef)
592 RXVT_CHECK_SIZE(rxvt_cv_int32_t, int32_t, 4, , int, rxvt_int32_typedef)
593 AC_SUBST(rxvt_int32_typedef)
594 RXVT_CHECK_SIZE(rxvt_cv_uint32_t, uint32_t, 4, unsigned, int, rxvt_uint32_typedef)
595 AC_SUBST(rxvt_uint32_typedef)
596 dnl RXVT_CHECK_SIZE(rxvt_cv_int64_t, int64_t, 8, , long long, rxvt_int64_typedef)
597 dnl AC_SUBST(rxvt_int64_typedef)
598 dnl RXVT_CHECK_SIZE(rxvt_cv_uint64_t, uint64_t, 8, unsigned, long long, rxvt_uint64_typedef)
599 dnl AC_SUBST(rxvt_uint64_typedef)
600 dnl#
601 dnl# Now look for another we use
602 dnl#
603 if test "$ac_cv_sizeof_int_p" -eq 8; then
604   rxvt_intp_define="#define intp_t int64_t"
605   rxvt_u_intp_define="#define u_intp_t u_int64_t"
606 else
607   if test "$ac_cv_sizeof_int_p" -eq 4; then
608     rxvt_intp_define="#define intp_t int32_t"
609     rxvt_u_intp_define="#define u_intp_t u_int32_t"
610   else
611     if test "$ac_cv_sizeof_int_p" -eq 2; then
612       rxvt_intp_define="#define intp_t int16_t"
613       rxvt_u_intp_define="#define u_intp_t u_int16_t"
614     else
615       rxvt_intp_define="#error set intp_t"
616       rxvt_u_intp_define="#error set u_intp_t"
617     fi
618   fi
619 fi
620 AC_SUBST(rxvt_intp_define)
621 AC_SUBST(rxvt_u_intp_define)
622
623 dnl# --------------------------------------------------------------------------
624 dnl# CHECKING FOR LIBRARY FUNCTIONS
625 dnl# --------------------------------------------------------------------------
626 AC_CHECK_FUNCS(unsetenv)
627
628 UTMP_CHECK
629
630 dnl# --------------------------------------------------------------------------
631
632 dnl# --------------------------------------------------------------------------
633 dnl# --------------------------------------------------------------------------
634
635 dnl# this is a really hack test for some basic Xlocale stuff
636 save_LIBS=$LIBS
637 save_CFLAGS=$CFLAGS
638 CFLAGS="$CFLAGS $X_CFLAGS"
639 LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11"
640 if test x$support_xim = xyes; then
641   AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale,
642   [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <X11/Xlib.h>
643   #include <stdlib.h>
644   main() {
645   char *p;
646   if ((p = XSetLocaleModifiers("@im=none")) != NULL && *p)
647   exit (XSupportsLocale() ? 0 : 1);
648   else
649   exit (1);}]])],[dnl
650     rxvt_cv_func_xlocale=yes],[rxvt_cv_func_xlocale=no],[dnl
651     :])])
652   if test x$rxvt_cv_func_xlocale = xyes; then
653     AC_DEFINE(USE_XIM, 1, Define if you want to have XIM (X Input Method) protocol support - required for multibyte characters input)
654     AC_CACHE_CHECK(for broken XIM callback, rxvt_broken_ximcb,
655     [AC_COMPILE_IFELSE([
656     #include <X11/Xlib.h>
657
658     void im_destroy_cb (XIC unused1, XPointer client_data, XPointer unused3);
659
660     void f() {
661       XIMCallback cb;
662       cb.callback = im_destroy_cb;
663     }
664     ],rxvt_broken_ximcb=yes,rxvt_broken_ximcb=no)])
665
666     if test x$rxvt_broken_ximcb = xyes; then
667        AC_DEFINE(XIMCB_PROTO_BROKEN, 1, Define if your XIMCallback specifies XIC as first type.)
668     fi
669   fi
670 fi
671
672 AC_CACHE_CHECK(for working X setlocale, rxvt_cv_func_xsetlocale,
673 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#define X_LOCALE 1
674 #include <X11/Xlocale.h>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_xsetlocale=yes],[rxvt_cv_func_xsetlocale=no])])
675 if test x$rxvt_cv_func_xsetlocale = xyes; then
676   AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works)
677 fi
678 LIBS=$save_LIBS
679 CFLAGS=$save_CFLAGS
680
681 AC_CACHE_CHECK(for working plain setlocale, rxvt_cv_func_setlocale,
682 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <clocale>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_setlocale=yes],[rxvt_cv_func_setlocale=no])])
683 if test x$rxvt_cv_func_setlocale = xyes; then
684   AC_DEFINE(HAVE_SETLOCALE, 1, Define if plain old setlocale works)
685 fi
686
687 AC_CACHE_CHECK(for working nl_langinfo, rxvt_cv_func_nl_langinfo,
688 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <langinfo.h>]], [[nl_langinfo(CODESET);]])],[rxvt_cv_func_nl_langinfo=yes],[rxvt_cv_func_nl_langinfo=no])])
689 if test x$rxvt_cv_func_nl_langinfo = xyes; then
690   AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works)
691 fi
692
693 SCM_RIGHTS_CHECK
694
695 PTY_CHECK
696
697 TTY_GROUP_CHECK
698
699 dnl# --------------------------------------------------------------------------
700 dnl# now add and remove other stuff
701 dnl# --------------------------------------------------------------------------
702 if test x$support_xft = xyes; then
703   AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
704   if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then
705     X_LIBS="`$PKG_CONFIG xft --libs` $X_LIBS"
706     CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`"
707   else
708     AC_PATH_PROG(XFT_CONFIG, xft-config, no)
709     if test $XFT_CONFIG != no; then
710       X_LIBS="`$XFT_CONFIG --libs` $X_LIBS"
711       CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`"
712     fi
713   fi
714
715   save_LIBS="$LIBS"
716   LIBS="$LIBS $X_LIBS"
717   AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no])
718   AC_CHECK_LIB(Xft,XftDrawString32,:,[support_xft=no])
719   LIBS="$save_LIBS"
720
721   if test x$support_xft = xyes; then
722     AC_DEFINE(XFT, 1, Define to enable xft support)
723   fi
724 fi
725 if test x$support_styles = xyes; then
726   AC_DEFINE(ENABLE_STYLES, 1, Define if you want bold and italic support)
727 fi
728 if test x$support_iso14755 = xyes; then
729   AC_DEFINE(ISO_14755, 1, Define if you want ISO 14755 extended support)
730 fi
731 if test x$support_8bitctrls = xyes; then
732   AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences)
733 fi
734 if test x$support_fading = xyes; then
735   AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost)
736 fi
737 if test x$support_inheritpixmap = xyes; then
738   AC_DEFINE(ENABLE_TRANSPARENCY, 1, Define if you want your background to use the parent window background)
739 fi
740 if test x$support_keepscrolling = xno; then
741   AC_DEFINE(NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING, 1, Define for continual scrolling when you keep the scrollbar button pressed)
742 fi
743 if test x$support_selectionscrolling = xyes; then
744   AC_DEFINE(SELECTION_SCROLLING, 1, Define to allow scrolling when the selection moves to the top or bottom of the screen)
745 fi
746 if test x$support_frills = xyes; then
747   AC_DEFINE(ENABLE_FRILLS, 1, Define if you want handling for rarely used but handy features)
748 fi
749 if test x$support_mousewheel = xyes; then
750   AC_DEFINE(MOUSE_WHEEL, 1, Define to use wheel events (button4 and button5) to scroll)
751 fi
752 if test x$support_mouseslipwheel = xyes; then
753   AC_DEFINE(MOUSE_SLIP_WHEELING, 1, Define to have CTRL cause wheel events to accelerate scrolling. Release CTRL to halt scrolling)
754 fi
755 if test x$support_afterimage = xyes; then
756   AC_DEFINE(HAVE_AFTERIMAGE, 1, Define if you want to use libAfterImage for image processing)
757   AC_DEFINE(BG_IMAGE_FROM_FILE, 1, Define if you want to have sexy-looking background pixmaps. Needs libAfterImage)
758 fi
759
760 dnl if test x$support_afterstep = xyes; then
761 dnl   AC_DEFINE(AFTERSTEP_INTEGRATION, 1, Define if you want to integrate with AfterStep window manager)
762 dnl fi
763
764 if test x$support_scroll_rxvt = xyes; then
765   AC_DEFINE(RXVT_SCROLLBAR, 1, Support Rxvt original style scrollbars)
766   scrolltypes="rxvt"
767 fi
768 if test x$support_scroll_next = xyes; then
769   AC_DEFINE(NEXT_SCROLLBAR, 1, Support NeXT style scrollbars)
770   scrolltypes="$scrolltypes next"
771 fi
772 if test x$support_scroll_xterm = xyes; then
773   AC_DEFINE(XTERM_SCROLLBAR, 1, Support Xterm style scrollbars)
774   scrolltypes="$scrolltypes xterm"
775 fi
776 if test x$support_scroll_plain = xyes; then
777   AC_DEFINE(PLAIN_SCROLLBAR, 1, Support plain style scrollbars)
778   scrolltypes="$scrolltypes plain"
779 fi
780 if test x$support_pointer_blank = xyes; then
781   AC_DEFINE(POINTER_BLANK, 1, Define if you want hide the pointer while typing)
782 fi
783 if test x$support_text_blink = xyes; then
784   AC_DEFINE(TEXT_BLINK, 1, Define if you want blinking text support)
785 fi
786 if test x$support_unicode3 = xyes; then
787   AC_DEFINE(UNICODE_3, 1, Define if you want to represent unicode characters outside plane 0)
788 fi
789 if test x$support_combining = xyes; then
790   AC_DEFINE(ENABLE_COMBINING, 1, Define if you want to automatically compose combining characters)
791 fi
792 if test x$codesets = xall; then
793   codesets=jp,jp-ext,kr,zh,zh-ext
794 fi
795 AC_DEFINE(ENCODING_EU, 1, Define if you want european extended codesets)
796 AC_DEFINE(ENCODING_VN, 1, Define if you want vietnamese codesets)
797 for codeset in `echo $codesets | tr "[a-z,\\-]" "[A-Z _]"`; do
798   case "$codeset" in
799     JP     ) AC_DEFINE(ENCODING_JP,     1, Define if you want japanese codesets) ;;
800     JP_EXT ) AC_DEFINE(ENCODING_JP_EXT, 1, Define if you want extended japanese codesets) ;;
801     KR     ) AC_DEFINE(ENCODING_KR,     1, Define if you want korean codesets) ;;
802     ZH     ) AC_DEFINE(ENCODING_ZH,     1, Define if you want chinese codesets) ;;
803     ZH_EXT ) AC_DEFINE(ENCODING_ZH_EXT, 1, Define if you want extended chinese codesets) ;;
804   esac
805 done
806
807 IF_PERL=\#
808 if test x$support_perl = xyes; then
809   AC_PATH_PROG(PERL, perl5)
810   AC_PATH_PROG(PERL, perl)
811
812   AC_MSG_CHECKING(for $PERL suitability)
813   if $PERL -MExtUtils::Embed -e "use v5.8" >/dev/null 2>/dev/null; then
814
815      save_CXXFLAGS="$CXXFLAGS"
816      save_LIBS="$LIBS"
817      CXXFLAGS="$CXXFLAGS `$PERL -MExtUtils::Embed -e ccopts`"
818      LIBS="$LIBS `$PERL -MExtUtils::Embed -e ldopts`"
819      AC_TRY_LINK([
820 #include <EXTERN.h>
821 #include <perl.h>
822 #include <XSUB.h>
823 ],[
824      PerlInterpreter *perl = perl_alloc ();
825 ],[rxvt_perl_link=yes],[rxvt_perl_link=no])
826      CXXFLAGS="$save_CXXFLAGS"
827      LIBS="$save_LIBS"
828
829      if test x$rxvt_perl_link = xyes; then
830         AC_MSG_RESULT(ok)
831         AC_DEFINE(ENABLE_PERL, 1, Define if you can embed a perl interpreter)
832         IF_PERL=
833         PERL_O=rxvtperl.o
834         PERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts`"
835         PERLLIB="`$PERL -MExtUtils::Embed -e ldopts`"
836         PERLPRIVLIBEXP="`$PERL -MConfig -e 'print $Config{privlibexp}'`"
837      else
838         AC_MSG_ERROR([no, unable to link])
839      fi
840   else
841      AC_MSG_ERROR([no working perl found, or perl not version >= 5.8])
842   fi
843 fi
844 AC_SUBST(PERLLIB)
845 AC_SUBST(PERLFLAGS)
846 AC_SUBST(PERLPRIVLIBEXP)
847 AC_SUBST(PERL)
848 AC_SUBST(IF_PERL)
849 AC_SUBST(PERL_O)
850
851 AC_SUBST(CFLAGS)
852 AC_SUBST(CPPFLAGS)
853 AC_SUBST(LDFLAGS)
854 AC_SUBST(X_CFLAGS)
855
856 dnl# Attack the libs
857 AC_SUBST(LIBS)
858 AC_SUBST(X_LIBS)
859 AC_SUBST(X_EXTRA_LIBS)
860
861 AC_SUBST(AFTERIMAGE_CFLAGS)
862 AC_SUBST(AFTERIMAGE_LIBS)
863
864 AC_ARG_PROGRAM
865
866 dnl# test for "sun" or "__sun__" before include sys_ioctl
867
868 dnl# revert HAVE_BLAH_H into a "#include <blah.h>"
869 AC_DEFUN([RXVT_DEFINE_TO_INCLUDE], dnl
870 [if test "$$3" = "$4" -o "$$5" = "$6"; then
871   $1="#include <$2>"
872 else
873   $1="/* #include <$2> */"
874 fi dnl
875 AC_SUBST($1)])
876
877 RXVT_DEFINE_TO_INCLUDE(include_stdint_h, stdint.h, ac_cv_header_stdint_h, yes, notset, dontmatch)
878 RXVT_DEFINE_TO_INCLUDE(include_stdarg_h, cstdarg, ac_cv_header_stdarg_h, yes, notset, dontmatch)
879 RXVT_DEFINE_TO_INCLUDE(include_stdlib_h, cstdlib, ac_cv_header_stdlib_h, yes, notset, dontmatch)
880 RXVT_DEFINE_TO_INCLUDE(include_unistd_h, unistd.h, ac_cv_header_unistd_h, yes, notset, dontmatch)
881 RXVT_DEFINE_TO_INCLUDE(include_string_h, cstring, ac_cv_header_string_h, yes, notset, dontmatch)
882 RXVT_DEFINE_TO_INCLUDE(include_fcntl_h, fcntl.h, ac_cv_header_fcntl_h, yes, notset, dontmatch)
883 RXVT_DEFINE_TO_INCLUDE(include_util_h, util.h, ac_cv_header_util_h, yes, notset, dontmatch)
884 RXVT_DEFINE_TO_INCLUDE(include_assert_h, assert.h, ac_cv_header_assert_h, yes, notset, dontmatch)
885 RXVT_DEFINE_TO_INCLUDE(include_sys_ioctl_h, sys/ioctl.h, rxvt_cv_header_sysioctl, yes, notset, dontmatch)
886 RXVT_DEFINE_TO_INCLUDE(include_sys_select_h, sys/select.h, ac_cv_header_sys_select_h, yes, notset, dontmatch)
887 RXVT_DEFINE_TO_INCLUDE(include_sys_strredir_h, sys/strredir.h, ac_cv_header_sys_strredir_h, yes, notset, dontmatch)
888 RXVT_DEFINE_TO_INCLUDE(include_sys_time_h, sys/time.h, ac_cv_header_sys_time_h, yes, notset, dontmatch)
889 RXVT_DEFINE_TO_INCLUDE(include_time_h, time.h, ac_cv_header_sys_time_h, no, ac_cv_header_time, yes)
890
891 AC_CONFIG_FILES([Makefile \
892 doc/Makefile \
893 src/Makefile \
894 src/rxvtlib.h \
895 ])
896 AC_OUTPUT
897
898 echo "Configuration:
899
900   Rxvt version:               $VERSION : $DATE
901   Source code location:       $srcdir
902   Install path:               ${prefix}/bin
903   Compiler:                   $CXX
904   Compiler flags:             $CXXFLAGS
905   Linker:                     $LINKER"
906
907 if test x$term != x; then
908   echo "  set TERM to:                $term"
909 fi
910 if test x$terminfo != x; then
911   echo "  set TERMINFO to:            $terminfo"
912 fi
913 echo "  default resource name:      $RESNAME"
914 echo "  resource class:             $RESCLASS"
915 if test x$RESFALLBACK != x; then
916    echo "  resource class fallback:    $RESFALLBACK"
917 fi
918 echo
919 echo "  embedded perl:              $support_perl"
920 echo "  libafterimage:              $support_afterimage"
921 dnl echo "  AfterStep integration:      $support_afterstep"
922 echo
923 if test x$support_xim = xyes -a x$rxvt_cv_func_xlocale = xno; then
924   echo ".----------------------------------------------------------------."
925   echo ". WARNING: --enable-xim was specified however the locale support ."
926   echo ".          functions could not be found.                         ."
927   echo ".          XIM is now being DISABLED!                            ."
928   echo ".----------------------------------------------------------------."
929 fi
930
931 echo "*** Optionally check src/feature.h for further, rarely used options ***"
932 echo
933