ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/configure.ac
(Generate patch)

Comparing rxvt-unicode/configure.ac (file contents):
Revision 1.70 by ayin, Thu Aug 2 00:09:54 2007 UTC vs.
Revision 1.89 by ayin, Mon Dec 10 23:36:05 2007 UTC

15DATE=`sed -n -e 's/^.*[ \t]DATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h` 15DATE=`sed -n -e 's/^.*[ \t]DATE.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
16dnl LIBVERSION=`sed -n -e 's/^.*[ \t]LIBVERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h` 16dnl LIBVERSION=`sed -n -e 's/^.*[ \t]LIBVERSION.*"\(.*\)"$/\1/p' ${srcdir}/src/version.h`
17changequote([, ])dnl 17changequote([, ])dnl
18AC_SUBST(VERSION)dnl 18AC_SUBST(VERSION)dnl
19AC_SUBST(DATE)dnl 19AC_SUBST(DATE)dnl
20AC_SUBST(LSMDATE)dnl
21AC_SUBST(LIBVERSION)dnl 20dnl AC_SUBST(LIBVERSION)dnl
21
22echo "" 22echo ""
23echo "configuring for rxvt $VERSION" 23echo "configuring for rxvt $VERSION"
24echo "" 24echo ""
25 25
26orig_CXXFLAGS="$CXXFLAGS" 26orig_CXXFLAGS="$CXXFLAGS"
27 27
28dnl# Checks for programs. 28dnl# Checks for programs.
29dnl AC_MAKE_SET
30
31AC_PROG_CC 29AC_PROG_CC
32AC_PROG_CXX 30AC_PROG_CXX
33AC_PROG_CPP 31AC_PROG_CPP
34AC_PROG_INSTALL 32AC_PROG_INSTALL
35 33
62dnl# -------------------------------------------------------------------------- 60dnl# --------------------------------------------------------------------------
63dnl# Supply default CXXFLAGS, if not specified by `CXXFLAGS=flags ./configure' 61dnl# Supply default CXXFLAGS, if not specified by `CXXFLAGS=flags ./configure'
64dnl# 62dnl#
65if test -z "$orig_CXXFLAGS"; then 63if test -z "$orig_CXXFLAGS"; then
66 if test x$GCC = xyes && test "x$GXX" = xyes; then 64 if test x$GCC = xyes && test "x$GXX" = xyes; then
67 CXXFLAGS="-g -O3 -fno-threadsafe-statics -fno-enforce-eh-specs" 65 CXXFLAGS="-g -O3 -fno-rtti -fvisibility-inlines-hidden -fno-threadsafe-statics -fno-enforce-eh-specs"
68 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="-g -O3"]) 66 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="-g -O3"])
69 else 67 else
70 CXXFLAGS="-O" 68 CXXFLAGS="-O"
71 fi 69 fi
72 CFLAGS="$CXXFLAGS" 70 CFLAGS="$CXXFLAGS"
95dnl AC_ENABLE_STATIC(yes)dnl# libtool 93dnl AC_ENABLE_STATIC(yes)dnl# libtool
96dnl AC_PROG_LIBTOOL()dnl# libtool 94dnl AC_PROG_LIBTOOL()dnl# libtool
97 95
98support_frills=yes 96support_frills=yes
99support_inheritpixmap=yes 97support_inheritpixmap=yes
100support_tinting=yes
101support_fading=yes 98support_fading=yes
102support_keepscrolling=yes 99support_keepscrolling=yes
103support_selectionscrolling=yes 100support_selectionscrolling=yes
104support_mousewheel=yes 101support_mousewheel=yes
105support_mouseslipwheel=yes 102support_mouseslipwheel=yes
123 120
124dnl# -------------------------------------------------------------------------- 121dnl# --------------------------------------------------------------------------
125dnl# CHECKING COMMAND LINE OPTIONS 122dnl# CHECKING COMMAND LINE OPTIONS
126dnl# -------------------------------------------------------------------------- 123dnl# --------------------------------------------------------------------------
127 124
128if test "x$enable_shared" = xyes; then 125dnl if test "x$enable_shared" = xyes; then
129 AC_DEFINE(LIBRXVT, 1, Build shared library version - specify via configure only) 126dnl AC_DEFINE(LIBRXVT, 1, Build shared library version - specify via configure only)
130 INSTALL_LIBRXVT=yes 127dnl INSTALL_LIBRXVT=yes
131fi 128dnl fi
132AC_SUBST(INSTALL_LIBRXVT) 129dnl AC_SUBST(INSTALL_LIBRXVT)
133 130
134AC_ARG_ENABLE(everything, 131AC_ARG_ENABLE(everything,
135 [ --enable-everything enable standard non-multichoice features 132 [ --enable-everything enable standard non-multichoice features
136 NOTE: this option is order dependent 133 NOTE: this option is order dependent],
137 NOTE: automatically enabled with --enable-shared],
138 [ 134 [
139 if test x$enableval = xno; then 135 if test x$enableval = xno; then
140 support_frills=no 136 support_frills=no
141 support_inheritpixmap=no 137 support_inheritpixmap=no
142 support_tinting=no
143 support_fading=no 138 support_fading=no
144 support_keepscrolling=no 139 support_keepscrolling=no
145 support_selectionscrolling=no 140 support_selectionscrolling=no
146 support_lastlog=no 141 support_lastlog=no
147 support_mousewheel=no 142 support_mousewheel=no
167 codesets= 162 codesets=
168 fi 163 fi
169 if test x$enableval = xyes; then 164 if test x$enableval = xyes; then
170 support_frills=yes 165 support_frills=yes
171 support_inheritpixmap=yes 166 support_inheritpixmap=yes
172 support_tinting=yes
173 support_fading=yes 167 support_fading=yes
174 support_keepscrolling=yes 168 support_keepscrolling=yes
175 support_selectionscrolling=yes 169 support_selectionscrolling=yes
176 support_lastlog=yes 170 support_lastlog=yes
177 support_mousewheel=yes 171 support_mousewheel=yes
196 support_perl=yes 190 support_perl=yes
197 codesets=all 191 codesets=all
198 fi 192 fi
199 ]) 193 ])
200 194
195WARNINGS=no
196AC_ARG_ENABLE(warnings,
197 [ --enable-warnings turn on g++ warnings],
198 [if test x$enableval = xyes; then
199 WARNINGS=yes
200 fi])
201if test x$GXX = xyes; then
202 if test $WARNINGS = yes; then
203 save_CXXFLAGS="$CXXFLAGS"
204 CXXFLAGS="$CXXFLAGS -Wall -Wno-sign-compare -Wno-reorder -Wno-non-virtual-dtor"
205 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="$save_CXXFLAGS"])
206 else
207 CXXFLAGS="$CXXFLAGS -w"
208 fi
209fi
210
201AC_ARG_ENABLE(unicode3, 211AC_ARG_ENABLE(unicode3,
202 [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters], 212 [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters],
203 [if test x$enableval = xyes -o x$enableval = xno; then 213 [if test x$enableval = xyes -o x$enableval = xno; then
204 support_unicode3=$enableval 214 support_unicode3=$enableval
205 fi]) 215 fi])
244 [ --enable-transparency enable transparent backgrounds], 254 [ --enable-transparency enable transparent backgrounds],
245 [if test x$enableval = xyes -o x$enableval = xno; then 255 [if test x$enableval = xyes -o x$enableval = xno; then
246 support_inheritpixmap=$enableval 256 support_inheritpixmap=$enableval
247 fi]) 257 fi])
248 258
249AC_ARG_ENABLE(tinting,
250 [ --enable-tinting enable tinting of transparent bg],
251 [if test x$enableval = xyes -o x$enableval = xno; then
252 support_tinting=$enableval
253 fi])
254
255AC_ARG_ENABLE(fading, 259AC_ARG_ENABLE(fading,
256 [ --enable-fading enable colors fading when off focus], 260 [ --enable-fading enable colors fading when off focus],
257 [if test x$enableval = xyes -o x$enableval = xno; then 261 [if test x$enableval = xyes -o x$enableval = xno; then
258 support_fading=$enableval 262 support_fading=$enableval
259 fi]) 263 fi])
274 [ --enable-xterm-scroll enable Xterm style scrollbar], 278 [ --enable-xterm-scroll enable Xterm style scrollbar],
275 [if test x$enableval = xyes -o x$enableval = xno; then 279 [if test x$enableval = xyes -o x$enableval = xno; then
276 support_scroll_xterm=$enableval 280 support_scroll_xterm=$enableval
277 fi]) 281 fi])
278 282
283AC_ARG_ENABLE(plain-scroll,
284 [ --enable-plain-scroll enable plain style scrollbar],
285 [if test x$enableval = xyes -o x$enableval = xno; then
286 support_scroll_plain=$enableval
287 fi])
288
279AC_ARG_ENABLE(perl, 289AC_ARG_ENABLE(perl,
280 [ --enable-perl enable embedded perl interpreter], 290 [ --enable-perl enable embedded perl interpreter],
281 [if test x$enableval = xyes -o x$enableval = xno; then 291 [if test x$enableval = xyes -o x$enableval = xno; then
282 support_perl=$enableval 292 support_perl=$enableval
283 fi]) 293 fi])
284 294
285AC_ARG_ENABLE(plain-scroll,
286 [ --enable-plain-scroll enable plain style scrollbar],
287 [if test x$enableval = xyes -o x$enableval = xno; then
288 support_scroll_plain=$enableval
289 fi])
290
291AC_ARG_WITH(codesets, 295AC_ARG_WITH(codesets,
292 [ --with-codesets=NAME,.. compile in additional codesets (jp,jp_ext,kr,zh,zh_ext,all)], 296 [ --with-codesets=CS,... compile in additional codesets (jp,jp_ext,kr,zh,zh_ext,all)],
293 [codesets="$withval"]) 297 [codesets="$withval"])
294 298
295AC_ARG_ENABLE(xim, 299AC_ARG_ENABLE(xim,
296 [ --enable-xim XIM (X Input Method) protocol support], 300 [ --enable-xim XIM (X Input Method) protocol support],
297 [if test x$enableval = xyes -o x$enableval = xno; then 301 [if test x$enableval = xyes -o x$enableval = xno; then
322 support_8bitctrls=$enableval 326 support_8bitctrls=$enableval
323 fi]) 327 fi])
324 328
325RESFALLBACK=Rxvt 329RESFALLBACK=Rxvt
326AC_ARG_ENABLE(fallback, 330AC_ARG_ENABLE(fallback,
327 [ --enable-fallback(=CLASS) fall back on CLASS resources in addition to URxvt ones (default: Rxvt)], 331 [ --enable-fallback@<:@=CLASS@:>@ fall back on CLASS resources in addition to URxvt ones (default: Rxvt)],
328 [ 332 [
329 test x$enableval = xyes && enableval=Rxvt 333 test x$enableval = xyes && enableval=Rxvt
330 test x$enableval = xno && enableval= 334 test x$enableval = xno && enableval=
331 RESFALLBACK="$enableval" 335 RESFALLBACK="$enableval"
332 ]) 336 ])
391 [if test x$enableval = xyes -o x$enableval = xno; then 395 [if test x$enableval = xyes -o x$enableval = xno; then
392 support_mousewheel=$enableval 396 support_mousewheel=$enableval
393 fi]) 397 fi])
394 398
395AC_ARG_ENABLE(slipwheeling, 399AC_ARG_ENABLE(slipwheeling,
396 [ --enable-slipwheeling enable slip wheel scrolling (requires previous)], 400 [ --enable-slipwheeling enable slip wheel scrolling (requires --enable-mousewheel)],
397 [if test x$enableval = xyes -o x$enableval = xno; then 401 [if test x$enableval = xyes -o x$enableval = xno; then
398 support_mouseslipwheel=$enableval 402 support_mouseslipwheel=$enableval
399 fi]) 403 fi])
400 404
401AC_ARG_ENABLE(smart-resize, 405AC_ARG_ENABLE(smart-resize,
428 AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval" 432 AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval"
429 fi]) 433 fi])
430 434
431dnl# -------------------------------------------------------------------------- 435dnl# --------------------------------------------------------------------------
432 436
437LIBEV_M4_AVOID_LIBRT=1
438m4_include([libev/libev.m4])
439
440dnl# --------------------------------------------------------------------------
441
433AC_PATH_PROG(TIC, tic) 442AC_PATH_PROG(TIC, tic, :)
434
435dnl# need a neat way to detect SVR4 or its features
436dnl# in src/command.c we use these functions:
437dnl# grantpt(), unlockpt(), ptsname(), which are defined in <sys/ptms.h>
438dnl# - but are these also defined for other systems?
439
440dnl# hack to find if this is SVR4 -- who knows?
441dnl## AC_MSG_CHECKING(for SVR4)
442dnl## AC_EGREP_CPP(yes,
443dnl## [#if defined (SVR4) || defined (_SVR4) || defined (__svr4__)
444dnl## yes;
445dnl## #endif
446dnl## ], [AC_MSG_RESULT(yes); AC_DEFINE(PERHAPS_SVR4)], AC_MSG_RESULT(perhaps not?))
447 443
448AC_PATH_XTRA 444AC_PATH_XTRA
449 445
450AFTERIMAGE_CFLAGS= 446AFTERIMAGE_CFLAGS=
451AFTERIMAGE_LIBS= 447AFTERIMAGE_LIBS=
483fi 479fi
484 480
485dnl# -------------------------------------------------------------------------- 481dnl# --------------------------------------------------------------------------
486dnl# CHECKING FOR HEADER FILES 482dnl# CHECKING FOR HEADER FILES
487dnl# -------------------------------------------------------------------------- 483dnl# --------------------------------------------------------------------------
488AC_HEADER_SYS_WAIT
489AC_CHECK_HEADERS( \ 484AC_CHECK_HEADERS( \
490 assert.h \ 485 assert.h \
491 fcntl.h \ 486 fcntl.h \
492 stdarg.h \ 487 stdarg.h \
493 stdlib.h \ 488 stdlib.h \
504 wchar.h \ 499 wchar.h \
505 cwchar \ 500 cwchar \
506 clocale \ 501 clocale \
507) 502)
508 503
509AC_HEADER_TIME
510
511dnl# check to allow both <termios.h> and <sys/ioctl.h> 504dnl# check to allow both <termios.h> and <sys/ioctl.h>
512AC_CACHE_CHECK(whether termios.h and sys/ioctl.h may both be included, rxvt_cv_header_sysioctl, 505AC_CACHE_CHECK(whether termios.h and sys/ioctl.h may both be included, rxvt_cv_header_sysioctl,
513[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h> 506[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
514#include <sys/ioctl.h> 507#include <sys/ioctl.h>
515#ifdef HAVE_TERMIOS_H 508#ifdef HAVE_TERMIOS_H
534 [rxvt_xlib_illegal_access=yes],[rxvt_xlib_illegal_access=no] 527 [rxvt_xlib_illegal_access=yes],[rxvt_xlib_illegal_access=no]
535)]) 528)])
536if test x$rxvt_xlib_illegal_access = xyes; then 529if test x$rxvt_xlib_illegal_access = xyes; then
537 AC_DEFINE(XLIB_ILLEGAL_ACCESS, 1, Define ONLY iff Xlib.h supports it) 530 AC_DEFINE(XLIB_ILLEGAL_ACCESS, 1, Define ONLY iff Xlib.h supports it)
538fi 531fi
539
540AC_C_CONST
541AC_C_INLINE
542
543dnl> AC_HEADER_STDC dnl# skip this test, Sun always fails anyhow.
544 532
545dnl# -------------------------------------------------------------------------- 533dnl# --------------------------------------------------------------------------
546dnl# CHECKING FOR MISSING TYPEDEFS 534dnl# CHECKING FOR MISSING TYPEDEFS
547dnl# -------------------------------------------------------------------------- 535dnl# --------------------------------------------------------------------------
548dnl# Missing typedefs and replacements 536dnl# Missing typedefs and replacements
632AC_SUBST(rxvt_u_intp_define) 620AC_SUBST(rxvt_u_intp_define)
633 621
634dnl# -------------------------------------------------------------------------- 622dnl# --------------------------------------------------------------------------
635dnl# CHECKING FOR LIBRARY FUNCTIONS 623dnl# CHECKING FOR LIBRARY FUNCTIONS
636dnl# -------------------------------------------------------------------------- 624dnl# --------------------------------------------------------------------------
637AC_TYPE_SIGNAL 625AC_CHECK_FUNCS(unsetenv)
638dnl> AC_FUNC_VPRINTF
639
640AC_CHECK_FUNCS( \
641 unsetenv \
642 setutent \
643 on_exit \
644)
645 626
646UTMP_CHECK 627UTMP_CHECK
647 628
648dnl# -------------------------------------------------------------------------- 629dnl# --------------------------------------------------------------------------
649 630
650dnl# find ttys/ttytab
651AC_CACHE_CHECK(where ttys/ttytab is located, rxvt_cv_path_ttytab,
652[for ttys_file in dnl
653 /etc/ttys /etc/ttytab;
654do
655 if test -f "$ttys_file" ; then
656 rxvt_cv_path_ttytab=$ttys_file
657 break
658 fi
659done
660])
661if test x$rxvt_cv_path_ttytab != x; then
662 AC_DEFINE_UNQUOTED(TTYTAB_FILENAME, "$rxvt_cv_path_ttytab", Define location of ttys/ttytab)
663fi
664
665dnl# -------------------------------------------------------------------------- 631dnl# --------------------------------------------------------------------------
666dnl# -------------------------------------------------------------------------- 632dnl# --------------------------------------------------------------------------
667 633
668dnl# this is a really hack test for some basic Xlocale stuff 634dnl# this is a really hack test for some basic Xlocale stuff
669ac_save_LIBS=$LIBS 635save_LIBS=$LIBS
670ac_save_CFLAGS=$CFLAGS 636save_CFLAGS=$CFLAGS
671CFLAGS="$CFLAGS $X_CFLAGS" 637CFLAGS="$CFLAGS $X_CFLAGS"
672LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11" 638LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11"
673AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale,
674[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <X11/Xlib.h>
675#include <stdlib.h>
676main() {
677char *p;
678if ((p = XSetLocaleModifiers("@im=none")) != NULL && *p)
679exit (XSupportsLocale() ? 0 : 1);
680else
681exit (1);}]])],[dnl
682 rxvt_cv_func_xlocale=yes],[rxvt_cv_func_xlocale=no],[dnl
683 :])])
684if test x$support_xim = xyes; then 639if test x$support_xim = xyes; then
640 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale,
641 [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <X11/Xlib.h>
642 #include <stdlib.h>
643 main() {
644 char *p;
645 if ((p = XSetLocaleModifiers("@im=none")) != NULL && *p)
646 exit (XSupportsLocale() ? 0 : 1);
647 else
648 exit (1);}]])],[dnl
649 rxvt_cv_func_xlocale=yes],[rxvt_cv_func_xlocale=no],[dnl
650 :])])
685 if test x$rxvt_cv_func_xlocale = xyes; then 651 if test x$rxvt_cv_func_xlocale = xyes; then
686 AC_DEFINE(USE_XIM, 1, Define if you want to have XIM (X Input Method) protocol support - required for multibyte characters input) 652 AC_DEFINE(USE_XIM, 1, Define if you want to have XIM (X Input Method) protocol support - required for multibyte characters input)
653 AC_CACHE_CHECK(for broken XIM callback, rxvt_broken_ximcb,
654 [AC_COMPILE_IFELSE([
655 #include <X11/Xlib.h>
656
657 void im_destroy_cb (XIC unused1, XPointer client_data, XPointer unused3);
658
659 void f() {
660 XIMCallback cb;
661 cb.callback = im_destroy_cb;
662 }
663 ],rxvt_broken_ximcb=yes,rxvt_broken_ximcb=no)])
664
665 if test x$rxvt_broken_ximcb = xyes; then
666 AC_DEFINE(XIMCB_PROTO_BROKEN, 1, Define if your XIMCallback specifies XIC as first type.)
667 fi
687 fi 668 fi
688fi 669fi
689 670
690AC_CACHE_CHECK(for working X setlocale, rxvt_cv_func_xsetlocale, 671AC_CACHE_CHECK(for working X setlocale, rxvt_cv_func_xsetlocale,
691[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#define X_LOCALE 1 672[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#define X_LOCALE 1
692#include <X11/Xlocale.h>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_xsetlocale=yes],[rxvt_cv_func_xsetlocale=no])]) 673#include <X11/Xlocale.h>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_xsetlocale=yes],[rxvt_cv_func_xsetlocale=no])])
693if test x$rxvt_cv_func_xsetlocale = xyes; then 674if test x$rxvt_cv_func_xsetlocale = xyes; then
694 AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works) 675 AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works)
695fi 676fi
696LIBS=$ac_save_LIBS 677LIBS=$save_LIBS
697CFLAGS=$ac_save_CFLAGS 678CFLAGS=$save_CFLAGS
698 679
699AC_CACHE_CHECK(for working plain setlocale, rxvt_cv_func_setlocale, 680AC_CACHE_CHECK(for working plain setlocale, rxvt_cv_func_setlocale,
700[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <clocale>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_setlocale=yes],[rxvt_cv_func_setlocale=no])]) 681[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <clocale>]], [[setlocale(LC_CTYPE, "");]])],[rxvt_cv_func_setlocale=yes],[rxvt_cv_func_setlocale=no])])
701if test x$rxvt_cv_func_setlocale = xyes; then 682if test x$rxvt_cv_func_setlocale = xyes; then
702 AC_DEFINE(HAVE_SETLOCALE, 1, Define if plain old setlocale works) 683 AC_DEFINE(HAVE_SETLOCALE, 1, Define if plain old setlocale works)
708 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works) 689 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works)
709fi 690fi
710 691
711SCM_RIGHTS_CHECK 692SCM_RIGHTS_CHECK
712 693
713AC_CACHE_CHECK(for broken XIM callback, rxvt_broken_ximcb,
714[AC_COMPILE_IFELSE([
715#include <X11/Xlib.h>
716
717void im_destroy_cb (XIC unused1, XPointer client_data, XPointer unused3);
718
719void f() {
720 XIMCallback cb;
721 cb.callback = im_destroy_cb;
722}
723],rxvt_broken_ximcb=yes,rxvt_broken_ximcb=no)])
724
725if test x$rxvt_broken_ximcb = xyes; then
726 AC_DEFINE(XIMCB_PROTO_BROKEN, 1, Define if your XIMCallback specifies XIC as first type.)
727fi
728
729PTY_CHECK 694PTY_CHECK
730 695
731TTY_GROUP_CHECK 696TTY_GROUP_CHECK
732 697
733dnl# -------------------------------------------------------------------------- 698dnl# --------------------------------------------------------------------------
734dnl# now add and remove other stuff 699dnl# now add and remove other stuff
735dnl# -------------------------------------------------------------------------- 700dnl# --------------------------------------------------------------------------
736if test x$support_xft = xyes; then 701if test x$support_xft = xyes; then
737 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) 702 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
738 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then 703 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then
739 LIBS="$LIBS `$PKG_CONFIG xft --libs`" 704 X_LIBS="`$PKG_CONFIG xft --libs` $X_LIBS"
740 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`" 705 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`"
741 else 706 else
742 AC_PATH_PROG(XFT_CONFIG, xft-config, no) 707 AC_PATH_PROG(XFT_CONFIG, xft-config, no)
743 if test $XFT_CONFIG != no; then 708 if test $XFT_CONFIG != no; then
744 LIBS="$LIBS `$XFT_CONFIG --libs`" 709 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS"
745 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`" 710 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`"
746 fi 711 fi
747 fi 712 fi
748 713
714 save_LIBS="$LIBS"
715 LIBS="$LIBS $X_LIBS"
749 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no]) 716 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no])
750 AC_CHECK_LIB(Xft,XftDrawString32,,[support_xft=no]) 717 AC_CHECK_LIB(Xft,XftDrawString32,:,[support_xft=no])
718 LIBS="$save_LIBS"
751 719
752 if test x$support_xft = xyes; then 720 if test x$support_xft = xyes; then
753 AC_DEFINE(XFT, 1, Define to enable xft support) 721 AC_DEFINE(XFT, 1, Define to enable xft support)
754 fi 722 fi
755fi 723fi
763 AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences) 731 AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences)
764fi 732fi
765if test x$support_fading = xyes; then 733if test x$support_fading = xyes; then
766 AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost) 734 AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost)
767fi 735fi
768if test x$support_tinting = xyes; then
769 AC_DEFINE(TINTING, 1, Define if you want your background to be tinted)
770fi
771if test x$support_inheritpixmap = xyes; then 736if test x$support_inheritpixmap = xyes; then
772 AC_DEFINE(ENABLE_TRANSPARENCY, 1, Define if you want your background to use the parent window background) 737 AC_DEFINE(ENABLE_TRANSPARENCY, 1, Define if you want your background to use the parent window background)
773fi 738fi
774if test x$support_keepscrolling = xno; then 739if test x$support_keepscrolling = xno; then
775 AC_DEFINE(NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING, 1, Define for continual scrolling when you keep the scrollbar button pressed) 740 AC_DEFINE(NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING, 1, Define for continual scrolling when you keep the scrollbar button pressed)
776fi 741fi
777if test x$support_selectionscrolling = xyes; then 742if test x$support_selectionscrolling = xyes; then
778 AC_DEFINE(SELECTION_SCROLLING, 1, Define to allow scrolling when the selection moves to the top or bottom of the screen) 743 AC_DEFINE(SELECTION_SCROLLING, 1, Define to allow scrolling when the selection moves to the top or bottom of the screen)
779fi 744fi
745if test x$support_frills = xyes; then
746 AC_DEFINE(ENABLE_FRILLS, 1, Define if you want handling for rarely used but handy features)
747fi
780if test x$support_mousewheel = xyes; then 748if test x$support_mousewheel = xyes; then
781 AC_DEFINE(MOUSE_WHEEL, 1, Define to use wheel events (button4 and button5) to scroll) 749 AC_DEFINE(MOUSE_WHEEL, 1, Define to use wheel events (button4 and button5) to scroll)
782fi 750fi
783if test x$support_mouseslipwheel = xyes; then 751if test x$support_mouseslipwheel = xyes; then
784 AC_DEFINE(MOUSE_SLIP_WHEELING, 1, Define to have CTRL cause wheel events to accelerate scrolling. Release CTRL to halt scrolling) 752 AC_DEFINE(MOUSE_SLIP_WHEELING, 1, Define to have CTRL cause wheel events to accelerate scrolling. Release CTRL to halt scrolling)
785fi 753fi
786if test x$support_afterimage = xyes; then 754if test x$support_afterimage = xyes; then
787 AC_DEFINE(HAVE_AFTERIMAGE, 1, Define if you want to use libAfterImage for image processing) 755 AC_DEFINE(HAVE_AFTERIMAGE, 1, Define if you want to use libAfterImage for image processing)
788 AC_DEFINE(XPM_BACKGROUND, 1, Define if you want to have sexy-looking background pixmaps. Needs libAfterImage) 756 AC_DEFINE(BG_IMAGE_FROM_FILE, 1, Define if you want to have sexy-looking background pixmaps. Needs libAfterImage)
789fi 757fi
790 758
791dnl if test x$support_afterstep = xyes; then 759dnl if test x$support_afterstep = xyes; then
792dnl AC_DEFINE(AFTERSTEP_INTEGRATION, 1, Define if you want to integrate with AfterStep window manager) 760dnl AC_DEFINE(AFTERSTEP_INTEGRATION, 1, Define if you want to integrate with AfterStep window manager)
793dnl fi 761dnl fi
877AC_SUBST(PERLPRIVLIBEXP) 845AC_SUBST(PERLPRIVLIBEXP)
878AC_SUBST(PERL) 846AC_SUBST(PERL)
879AC_SUBST(IF_PERL) 847AC_SUBST(IF_PERL)
880AC_SUBST(PERL_O) 848AC_SUBST(PERL_O)
881 849
882if test x$support_perl = xyes; then
883 support_frills=yes
884fi
885
886if test x$support_frills = xyes; then
887 AC_DEFINE(ENABLE_FRILLS, 1, Define if you want handling for rarely used but handy features)
888fi
889
890AC_SUBST(CFLAGS) 850AC_SUBST(CFLAGS)
891AC_SUBST(CPPFLAGS) 851AC_SUBST(CPPFLAGS)
892AC_SUBST(LDFLAGS) 852AC_SUBST(LDFLAGS)
893AC_SUBST(X_CFLAGS) 853AC_SUBST(X_CFLAGS)
894 854
941 Install path: ${prefix}/bin 901 Install path: ${prefix}/bin
942 Compiler: $CXX 902 Compiler: $CXX
943 Compiler flags: $CXXFLAGS 903 Compiler flags: $CXXFLAGS
944 Linker: $LINKER" 904 Linker: $LINKER"
945 905
946if test x$support_afterimage = xyes; then
947 echo " AfterImage support: yes"
948fi
949
950dnl if test x$support_afterstep = xyes; then
951dnl echo " AfterStep integration: yes"
952dnl fi
953
954if test x$term != x; then 906if test x$term != x; then
955 echo " set TERM to: $term" 907 echo " set TERM to: $term"
956fi 908fi
957if test x$terminfo != x; then 909if test x$terminfo != x; then
958 echo " set TERMINFO to: $terminfo" 910 echo " set TERMINFO to: $terminfo"
963 echo " resource class fallback: $RESFALLBACK" 915 echo " resource class fallback: $RESFALLBACK"
964fi 916fi
965echo 917echo
966echo " embedded perl: $support_perl" 918echo " embedded perl: $support_perl"
967echo " libafterimage: $support_afterimage" 919echo " libafterimage: $support_afterimage"
920dnl echo " AfterStep integration: $support_afterstep"
968echo 921echo
969if test x$support_xim = xyes -a x$rxvt_cv_func_xlocale = xno; then 922if test x$support_xim = xyes -a x$rxvt_cv_func_xlocale = xno; then
970 echo ".----------------------------------------------------------------." 923 echo ".----------------------------------------------------------------."
971 echo ". WARNING: --enable-xim was specified however the locale support ." 924 echo ". WARNING: --enable-xim was specified however the locale support ."
972 echo ". functions could not be found. ." 925 echo ". functions could not be found. ."

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines