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.83 by root, Sun Nov 18 01:02:09 2007 UTC

17changequote([, ])dnl 17changequote([, ])dnl
18AC_SUBST(VERSION)dnl 18AC_SUBST(VERSION)dnl
19AC_SUBST(DATE)dnl 19AC_SUBST(DATE)dnl
20AC_SUBST(LSMDATE)dnl 20AC_SUBST(LSMDATE)dnl
21AC_SUBST(LIBVERSION)dnl 21AC_SUBST(LIBVERSION)dnl
22
22echo "" 23echo ""
23echo "configuring for rxvt $VERSION" 24echo "configuring for rxvt $VERSION"
24echo "" 25echo ""
25 26
26orig_CXXFLAGS="$CXXFLAGS" 27orig_CXXFLAGS="$CXXFLAGS"
62dnl# -------------------------------------------------------------------------- 63dnl# --------------------------------------------------------------------------
63dnl# Supply default CXXFLAGS, if not specified by `CXXFLAGS=flags ./configure' 64dnl# Supply default CXXFLAGS, if not specified by `CXXFLAGS=flags ./configure'
64dnl# 65dnl#
65if test -z "$orig_CXXFLAGS"; then 66if test -z "$orig_CXXFLAGS"; then
66 if test x$GCC = xyes && test "x$GXX" = xyes; then 67 if test x$GCC = xyes && test "x$GXX" = xyes; then
67 CXXFLAGS="-g -O3 -fno-threadsafe-statics -fno-enforce-eh-specs" 68 CXXFLAGS="-g -O3 -fno-threadsafe-statics -fno-enforce-eh-specs"
68 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="-g -O3"]) 69 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="-g -O3"])
69 else 70 else
70 CXXFLAGS="-O" 71 CXXFLAGS="-O"
71 fi 72 fi
72 CFLAGS="$CXXFLAGS" 73 CFLAGS="$CXXFLAGS"
95dnl AC_ENABLE_STATIC(yes)dnl# libtool 96dnl AC_ENABLE_STATIC(yes)dnl# libtool
96dnl AC_PROG_LIBTOOL()dnl# libtool 97dnl AC_PROG_LIBTOOL()dnl# libtool
97 98
98support_frills=yes 99support_frills=yes
99support_inheritpixmap=yes 100support_inheritpixmap=yes
100support_tinting=yes
101support_fading=yes 101support_fading=yes
102support_keepscrolling=yes 102support_keepscrolling=yes
103support_selectionscrolling=yes 103support_selectionscrolling=yes
104support_mousewheel=yes 104support_mousewheel=yes
105support_mouseslipwheel=yes 105support_mouseslipwheel=yes
137 NOTE: automatically enabled with --enable-shared], 137 NOTE: automatically enabled with --enable-shared],
138 [ 138 [
139 if test x$enableval = xno; then 139 if test x$enableval = xno; then
140 support_frills=no 140 support_frills=no
141 support_inheritpixmap=no 141 support_inheritpixmap=no
142 support_tinting=no
143 support_fading=no 142 support_fading=no
144 support_keepscrolling=no 143 support_keepscrolling=no
145 support_selectionscrolling=no 144 support_selectionscrolling=no
146 support_lastlog=no 145 support_lastlog=no
147 support_mousewheel=no 146 support_mousewheel=no
167 codesets= 166 codesets=
168 fi 167 fi
169 if test x$enableval = xyes; then 168 if test x$enableval = xyes; then
170 support_frills=yes 169 support_frills=yes
171 support_inheritpixmap=yes 170 support_inheritpixmap=yes
172 support_tinting=yes
173 support_fading=yes 171 support_fading=yes
174 support_keepscrolling=yes 172 support_keepscrolling=yes
175 support_selectionscrolling=yes 173 support_selectionscrolling=yes
176 support_lastlog=yes 174 support_lastlog=yes
177 support_mousewheel=yes 175 support_mousewheel=yes
196 support_perl=yes 194 support_perl=yes
197 codesets=all 195 codesets=all
198 fi 196 fi
199 ]) 197 ])
200 198
199WARNINGS=no
200AC_ARG_ENABLE(warnings,
201 [ --enable-warnings turn on g++ warnings],
202 [if test x$enableval = xyes; then
203 WARNINGS=yes
204 fi])
205if test x$GXX = xyes; then
206 if test $WARNINGS = yes; then
207 save_CXXFLAGS="$CXXFLAGS"
208 CXXFLAGS="$CXXFLAGS -Wall -Wno-sign-compare -Wno-reorder -Wno-non-virtual-dtor"
209 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [], [CXXFLAGS="$save_CXXFLAGS"])
210 else
211 CXXFLAGS="$CXXFLAGS -w"
212 fi
213fi
214
201AC_ARG_ENABLE(unicode3, 215AC_ARG_ENABLE(unicode3,
202 [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters], 216 [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters],
203 [if test x$enableval = xyes -o x$enableval = xno; then 217 [if test x$enableval = xyes -o x$enableval = xno; then
204 support_unicode3=$enableval 218 support_unicode3=$enableval
205 fi]) 219 fi])
244 [ --enable-transparency enable transparent backgrounds], 258 [ --enable-transparency enable transparent backgrounds],
245 [if test x$enableval = xyes -o x$enableval = xno; then 259 [if test x$enableval = xyes -o x$enableval = xno; then
246 support_inheritpixmap=$enableval 260 support_inheritpixmap=$enableval
247 fi]) 261 fi])
248 262
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, 263AC_ARG_ENABLE(fading,
256 [ --enable-fading enable colors fading when off focus], 264 [ --enable-fading enable colors fading when off focus],
257 [if test x$enableval = xyes -o x$enableval = xno; then 265 [if test x$enableval = xyes -o x$enableval = xno; then
258 support_fading=$enableval 266 support_fading=$enableval
259 fi]) 267 fi])
287 [if test x$enableval = xyes -o x$enableval = xno; then 295 [if test x$enableval = xyes -o x$enableval = xno; then
288 support_scroll_plain=$enableval 296 support_scroll_plain=$enableval
289 fi]) 297 fi])
290 298
291AC_ARG_WITH(codesets, 299AC_ARG_WITH(codesets,
292 [ --with-codesets=NAME,.. compile in additional codesets (jp,jp_ext,kr,zh,zh_ext,all)], 300 [ --with-codesets=CS,... compile in additional codesets (jp,jp_ext,kr,zh,zh_ext,all)],
293 [codesets="$withval"]) 301 [codesets="$withval"])
294 302
295AC_ARG_ENABLE(xim, 303AC_ARG_ENABLE(xim,
296 [ --enable-xim XIM (X Input Method) protocol support], 304 [ --enable-xim XIM (X Input Method) protocol support],
297 [if test x$enableval = xyes -o x$enableval = xno; then 305 [if test x$enableval = xyes -o x$enableval = xno; then
322 support_8bitctrls=$enableval 330 support_8bitctrls=$enableval
323 fi]) 331 fi])
324 332
325RESFALLBACK=Rxvt 333RESFALLBACK=Rxvt
326AC_ARG_ENABLE(fallback, 334AC_ARG_ENABLE(fallback,
327 [ --enable-fallback(=CLASS) fall back on CLASS resources in addition to URxvt ones (default: Rxvt)], 335 [ --enable-fallback@<:@=CLASS@:>@ fall back on CLASS resources in addition to URxvt ones (default: Rxvt)],
328 [ 336 [
329 test x$enableval = xyes && enableval=Rxvt 337 test x$enableval = xyes && enableval=Rxvt
330 test x$enableval = xno && enableval= 338 test x$enableval = xno && enableval=
331 RESFALLBACK="$enableval" 339 RESFALLBACK="$enableval"
332 ]) 340 ])
391 [if test x$enableval = xyes -o x$enableval = xno; then 399 [if test x$enableval = xyes -o x$enableval = xno; then
392 support_mousewheel=$enableval 400 support_mousewheel=$enableval
393 fi]) 401 fi])
394 402
395AC_ARG_ENABLE(slipwheeling, 403AC_ARG_ENABLE(slipwheeling,
396 [ --enable-slipwheeling enable slip wheel scrolling (requires previous)], 404 [ --enable-slipwheeling enable slip wheel scrolling (requires --enable-mousewheel)],
397 [if test x$enableval = xyes -o x$enableval = xno; then 405 [if test x$enableval = xyes -o x$enableval = xno; then
398 support_mouseslipwheel=$enableval 406 support_mouseslipwheel=$enableval
399 fi]) 407 fi])
400 408
401AC_ARG_ENABLE(smart-resize, 409AC_ARG_ENABLE(smart-resize,
428 AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval" 436 AC_DEFINE_UNQUOTED(RXVT_TERMINFO, "$withval", Set TERMINFO value to the value given by configure) terminfo="$withval"
429 fi]) 437 fi])
430 438
431dnl# -------------------------------------------------------------------------- 439dnl# --------------------------------------------------------------------------
432 440
441m4_include([libev/libev.m4])
442
443dnl# --------------------------------------------------------------------------
444
433AC_PATH_PROG(TIC, tic) 445AC_PATH_PROG(TIC, tic, :)
434 446
435dnl# need a neat way to detect SVR4 or its features 447dnl# need a neat way to detect SVR4 or its features
436dnl# in src/command.c we use these functions: 448dnl# in src/command.c we use these functions:
437dnl# grantpt(), unlockpt(), ptsname(), which are defined in <sys/ptms.h> 449dnl# grantpt(), unlockpt(), ptsname(), which are defined in <sys/ptms.h>
438dnl# - but are these also defined for other systems? 450dnl# - but are these also defined for other systems?
635dnl# CHECKING FOR LIBRARY FUNCTIONS 647dnl# CHECKING FOR LIBRARY FUNCTIONS
636dnl# -------------------------------------------------------------------------- 648dnl# --------------------------------------------------------------------------
637AC_TYPE_SIGNAL 649AC_TYPE_SIGNAL
638dnl> AC_FUNC_VPRINTF 650dnl> AC_FUNC_VPRINTF
639 651
640AC_CHECK_FUNCS( \ 652AC_CHECK_FUNCS(unsetenv)
641 unsetenv \
642 setutent \
643 on_exit \
644)
645 653
646UTMP_CHECK 654UTMP_CHECK
647 655
648dnl# -------------------------------------------------------------------------- 656dnl# --------------------------------------------------------------------------
649 657
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# -------------------------------------------------------------------------- 658dnl# --------------------------------------------------------------------------
666dnl# -------------------------------------------------------------------------- 659dnl# --------------------------------------------------------------------------
667 660
668dnl# this is a really hack test for some basic Xlocale stuff 661dnl# this is a really hack test for some basic Xlocale stuff
669ac_save_LIBS=$LIBS 662save_LIBS=$LIBS
670ac_save_CFLAGS=$CFLAGS 663save_CFLAGS=$CFLAGS
671CFLAGS="$CFLAGS $X_CFLAGS" 664CFLAGS="$CFLAGS $X_CFLAGS"
672LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11" 665LIBS="$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 666if test x$support_xim = xyes; then
667 AC_CACHE_CHECK(for working Xlocale, rxvt_cv_func_xlocale,
668 [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <X11/Xlib.h>
669 #include <stdlib.h>
670 main() {
671 char *p;
672 if ((p = XSetLocaleModifiers("@im=none")) != NULL && *p)
673 exit (XSupportsLocale() ? 0 : 1);
674 else
675 exit (1);}]])],[dnl
676 rxvt_cv_func_xlocale=yes],[rxvt_cv_func_xlocale=no],[dnl
677 :])])
685 if test x$rxvt_cv_func_xlocale = xyes; then 678 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) 679 AC_DEFINE(USE_XIM, 1, Define if you want to have XIM (X Input Method) protocol support - required for multibyte characters input)
680 AC_CACHE_CHECK(for broken XIM callback, rxvt_broken_ximcb,
681 [AC_COMPILE_IFELSE([
682 #include <X11/Xlib.h>
683
684 void im_destroy_cb (XIC unused1, XPointer client_data, XPointer unused3);
685
686 void f() {
687 XIMCallback cb;
688 cb.callback = im_destroy_cb;
689 }
690 ],rxvt_broken_ximcb=yes,rxvt_broken_ximcb=no)])
691
692 if test x$rxvt_broken_ximcb = xyes; then
693 AC_DEFINE(XIMCB_PROTO_BROKEN, 1, Define if your XIMCallback specifies XIC as first type.)
694 fi
687 fi 695 fi
688fi 696fi
689 697
690AC_CACHE_CHECK(for working X setlocale, rxvt_cv_func_xsetlocale, 698AC_CACHE_CHECK(for working X setlocale, rxvt_cv_func_xsetlocale,
691[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#define X_LOCALE 1 699[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])]) 700#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 701if test x$rxvt_cv_func_xsetlocale = xyes; then
694 AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works) 702 AC_DEFINE(HAVE_XSETLOCALE, 1, Define if setlocale (defined to Xsetlocale) works)
695fi 703fi
696LIBS=$ac_save_LIBS 704LIBS=$save_LIBS
697CFLAGS=$ac_save_CFLAGS 705CFLAGS=$save_CFLAGS
698 706
699AC_CACHE_CHECK(for working plain setlocale, rxvt_cv_func_setlocale, 707AC_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])]) 708[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 709if test x$rxvt_cv_func_setlocale = xyes; then
702 AC_DEFINE(HAVE_SETLOCALE, 1, Define if plain old setlocale works) 710 AC_DEFINE(HAVE_SETLOCALE, 1, Define if plain old setlocale works)
708 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works) 716 AC_DEFINE(HAVE_NL_LANGINFO, 1, Define if nl_langinfo(CODESET) works)
709fi 717fi
710 718
711SCM_RIGHTS_CHECK 719SCM_RIGHTS_CHECK
712 720
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 721PTY_CHECK
730 722
731TTY_GROUP_CHECK 723TTY_GROUP_CHECK
732 724
733dnl# -------------------------------------------------------------------------- 725dnl# --------------------------------------------------------------------------
734dnl# now add and remove other stuff 726dnl# now add and remove other stuff
735dnl# -------------------------------------------------------------------------- 727dnl# --------------------------------------------------------------------------
736if test x$support_xft = xyes; then 728if test x$support_xft = xyes; then
737 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) 729 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
738 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then 730 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then
739 LIBS="$LIBS `$PKG_CONFIG xft --libs`" 731 X_LIBS="`$PKG_CONFIG xft --libs` $X_LIBS"
740 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`" 732 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`"
741 else 733 else
742 AC_PATH_PROG(XFT_CONFIG, xft-config, no) 734 AC_PATH_PROG(XFT_CONFIG, xft-config, no)
743 if test $XFT_CONFIG != no; then 735 if test $XFT_CONFIG != no; then
744 LIBS="$LIBS `$XFT_CONFIG --libs`" 736 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS"
745 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`" 737 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`"
746 fi 738 fi
747 fi 739 fi
748 740
741 save_LIBS="$LIBS"
742 LIBS="$LIBS $X_LIBS"
749 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no]) 743 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no])
750 AC_CHECK_LIB(Xft,XftDrawString32,,[support_xft=no]) 744 AC_CHECK_LIB(Xft,XftDrawString32,:,[support_xft=no])
745 LIBS="$save_LIBS"
751 746
752 if test x$support_xft = xyes; then 747 if test x$support_xft = xyes; then
753 AC_DEFINE(XFT, 1, Define to enable xft support) 748 AC_DEFINE(XFT, 1, Define to enable xft support)
754 fi 749 fi
755fi 750fi
763 AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences) 758 AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences)
764fi 759fi
765if test x$support_fading = xyes; then 760if test x$support_fading = xyes; then
766 AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost) 761 AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost)
767fi 762fi
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 763if test x$support_inheritpixmap = xyes; then
772 AC_DEFINE(ENABLE_TRANSPARENCY, 1, Define if you want your background to use the parent window background) 764 AC_DEFINE(ENABLE_TRANSPARENCY, 1, Define if you want your background to use the parent window background)
773fi 765fi
774if test x$support_keepscrolling = xno; then 766if 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) 767 AC_DEFINE(NO_SCROLLBAR_BUTTON_CONTINUAL_SCROLLING, 1, Define for continual scrolling when you keep the scrollbar button pressed)
776fi 768fi
777if test x$support_selectionscrolling = xyes; then 769if 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) 770 AC_DEFINE(SELECTION_SCROLLING, 1, Define to allow scrolling when the selection moves to the top or bottom of the screen)
779fi 771fi
772if test x$support_frills = xyes; then
773 AC_DEFINE(ENABLE_FRILLS, 1, Define if you want handling for rarely used but handy features)
774fi
780if test x$support_mousewheel = xyes; then 775if test x$support_mousewheel = xyes; then
781 AC_DEFINE(MOUSE_WHEEL, 1, Define to use wheel events (button4 and button5) to scroll) 776 AC_DEFINE(MOUSE_WHEEL, 1, Define to use wheel events (button4 and button5) to scroll)
782fi 777fi
783if test x$support_mouseslipwheel = xyes; then 778if 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) 779 AC_DEFINE(MOUSE_SLIP_WHEELING, 1, Define to have CTRL cause wheel events to accelerate scrolling. Release CTRL to halt scrolling)
785fi 780fi
786if test x$support_afterimage = xyes; then 781if test x$support_afterimage = xyes; then
787 AC_DEFINE(HAVE_AFTERIMAGE, 1, Define if you want to use libAfterImage for image processing) 782 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) 783 AC_DEFINE(BG_IMAGE_FROM_FILE, 1, Define if you want to have sexy-looking background pixmaps. Needs libAfterImage)
789fi 784fi
790 785
791dnl if test x$support_afterstep = xyes; then 786dnl if test x$support_afterstep = xyes; then
792dnl AC_DEFINE(AFTERSTEP_INTEGRATION, 1, Define if you want to integrate with AfterStep window manager) 787dnl AC_DEFINE(AFTERSTEP_INTEGRATION, 1, Define if you want to integrate with AfterStep window manager)
793dnl fi 788dnl fi
877AC_SUBST(PERLPRIVLIBEXP) 872AC_SUBST(PERLPRIVLIBEXP)
878AC_SUBST(PERL) 873AC_SUBST(PERL)
879AC_SUBST(IF_PERL) 874AC_SUBST(IF_PERL)
880AC_SUBST(PERL_O) 875AC_SUBST(PERL_O)
881 876
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) 877AC_SUBST(CFLAGS)
891AC_SUBST(CPPFLAGS) 878AC_SUBST(CPPFLAGS)
892AC_SUBST(LDFLAGS) 879AC_SUBST(LDFLAGS)
893AC_SUBST(X_CFLAGS) 880AC_SUBST(X_CFLAGS)
894 881
941 Install path: ${prefix}/bin 928 Install path: ${prefix}/bin
942 Compiler: $CXX 929 Compiler: $CXX
943 Compiler flags: $CXXFLAGS 930 Compiler flags: $CXXFLAGS
944 Linker: $LINKER" 931 Linker: $LINKER"
945 932
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 933if test x$term != x; then
955 echo " set TERM to: $term" 934 echo " set TERM to: $term"
956fi 935fi
957if test x$terminfo != x; then 936if test x$terminfo != x; then
958 echo " set TERMINFO to: $terminfo" 937 echo " set TERMINFO to: $terminfo"
963 echo " resource class fallback: $RESFALLBACK" 942 echo " resource class fallback: $RESFALLBACK"
964fi 943fi
965echo 944echo
966echo " embedded perl: $support_perl" 945echo " embedded perl: $support_perl"
967echo " libafterimage: $support_afterimage" 946echo " libafterimage: $support_afterimage"
947dnl echo " AfterStep integration: $support_afterstep"
968echo 948echo
969if test x$support_xim = xyes -a x$rxvt_cv_func_xlocale = xno; then 949if test x$support_xim = xyes -a x$rxvt_cv_func_xlocale = xno; then
970 echo ".----------------------------------------------------------------." 950 echo ".----------------------------------------------------------------."
971 echo ". WARNING: --enable-xim was specified however the locale support ." 951 echo ". WARNING: --enable-xim was specified however the locale support ."
972 echo ". functions could not be found. ." 952 echo ". functions could not be found. ."

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines